<?xml version="1.0" encoding="gb2312"?>
<rss version="2.0">
<channel>
<title><![CDATA[yiyi]]></title>
        <image>
        <title>http://hi.baidu.com</title>
        <link>http://hi.baidu.com</link>
        <url>http://img.baidu.com/img/logo-hi.gif</url>
        </image>
<description><![CDATA[Algorithm ACM/ICPC Topcoder]]></description>
<link>http://hi.baidu.com/yiyiyi4321</link>
<language>zh-cn</language>
<generator>www.baidu.com</generator>
<ttl>5</ttl>


<item>
        <title><![CDATA[09年的Astar终于挂了…………]]></title>
        <link><![CDATA[http://hi.baidu.com/yiyiyi4321/blog/item/b2d0e519136ab74c42a9ad5a.html]]></link>
        <description><![CDATA[
		
		<p>原因如下：</p>
<p>1. 本人太菜。</p>
<p>2. 第一场比赛被某件破事耽误了一个小时之后才开始做，第二场比赛是上班时间，完全没时间做。</p>
<p>3. 一年没弄过这种算法比赛了，严重退化了，第一场的第一题把j打成i结果还没检查出来，第三题也写得漏洞百出。最后离第200名差了一丁点，丢人</p>
<p>另外随手做了下有道的比赛，这个据说是闭着眼睛就能过，所以我还是过了…………</p>
<p>不过可恨的是有道的复赛时间又和某件事冲突了……</p>
<p> </p> 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/yiyiyi4321/blog/category/%C4%AC%C8%CF%B7%D6%C0%E0">默认分类</a>&nbsp;<a href="http://hi.baidu.com/yiyiyi4321/blog/item/b2d0e519136ab74c42a9ad5a.html#comment">查看评论</a>]]></description>
        <pubDate>2009-06-13  09:00</pubDate>
        <category><![CDATA[默认分类]]></category>
        <author><![CDATA[yiyiyi4321]]></author>
		<guid>http://hi.baidu.com/yiyiyi4321/blog/item/b2d0e519136ab74c42a9ad5a.html</guid>
</item>

<item>
        <title><![CDATA[[转]怎么知道别人百度空间的背景音乐链接地址]]></title>
        <link><![CDATA[http://hi.baidu.com/yiyiyi4321/blog/item/13e1554f980be530aec3abec.html]]></link>
        <description><![CDATA[
		
		直接进入别人空间,在IE地址栏空间名后面输入括号内的(/music/music.pls），然后回车确认进入。 <br>
如我的空间的音乐列表的地址为：<a href="http://hi.baidu.com/" target="_blank">http://hi.baidu.com/</a>平湖秋月空间/music/music.pls <br>
这时浏览器会变成一片空白，你点击右键，选择查看源文件，就能看到音乐列表中音乐的地址了。 <br>
OK 很简单的 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/yiyiyi4321/blog/category/%C4%AC%C8%CF%B7%D6%C0%E0">默认分类</a>&nbsp;<a href="http://hi.baidu.com/yiyiyi4321/blog/item/13e1554f980be530aec3abec.html#comment">查看评论</a>]]></description>
        <pubDate>2008-07-22  18:40</pubDate>
        <category><![CDATA[默认分类]]></category>
        <author><![CDATA[yiyiyi4321]]></author>
		<guid>http://hi.baidu.com/yiyiyi4321/blog/item/13e1554f980be530aec3abec.html</guid>
</item>

<item>
        <title><![CDATA[Astar2008初赛第1场，第4题]]></title>
        <link><![CDATA[http://hi.baidu.com/yiyiyi4321/blog/item/72053338dbf01f2697ddd8d7.html]]></link>
        <description><![CDATA[
		
		<p>//我胡搞了一回，居然用遗传算法搞了它</p>
<p>//因为我毕业设计做的就是遗传算法</p>
<p>#include&lt;iostream&gt;<br>
#include&lt;cstdlib&gt;<br>
#include&lt;vector&gt;</p>
<p>using namespace std;</p>
<p>const int M = 1000;</p>
<p>struct point {<br>
&nbsp;&nbsp;&nbsp;  double x, y;<br>
}p[51];</p>
<p>double r[51];<br>
int w, h, n;</p>
<p>double rrandom()<br>
{<br>
&nbsp;&nbsp;&nbsp;  double ret;<br>
&nbsp;&nbsp;&nbsp;  ret = (double)rand() / 32767.0;<br>
&nbsp;&nbsp;&nbsp;  return ret*ret;<br>
}</p>
<p>int f(point pp, double k)<br>
{<br>
&nbsp;&nbsp;&nbsp;  int i, ret = 0;<br>
&nbsp;&nbsp;&nbsp;  for(i = 0; i &lt; n; i ++)<br>
&nbsp;&nbsp;&nbsp;  {<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  if((p[i].x-pp.x)*(p[i].x-pp.x)+(p[i].y-pp.y)*(p[i].y-pp.y) &lt; k*k*r[i]*r[i]+1e-9)ret ++;<br>
&nbsp;&nbsp;&nbsp;  }<br>
&nbsp;&nbsp;&nbsp;  return ret;<br>
}</p>
<p><br>
bool check(double k)<br>
{<br>
&nbsp;&nbsp;&nbsp;  int i, j, l, s[900], top = 0;<br>
&nbsp;&nbsp;&nbsp;  int Iter = 50, a, b;<br>
&nbsp;&nbsp;&nbsp;  int cnt = 0;<br>
&nbsp;&nbsp;&nbsp;  double avg;<br>
&nbsp;&nbsp;&nbsp;  point x[2][900];<br>
&nbsp;&nbsp;&nbsp;  point xx, yy;<br>
&nbsp;&nbsp;&nbsp;  <br>
&nbsp;&nbsp;&nbsp;  for(i = 0; i &lt; 30; i ++)<br>
&nbsp;&nbsp;&nbsp;  {<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  for(j = 0; j &lt; 30; j ++)<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  {<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  x[0][top].x = (double)i/29.0*(double)w;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  x[0][top].y = (double)j/29.0*(double)h;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  top++;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  }<br>
&nbsp;&nbsp;&nbsp;  }<br>
&nbsp;&nbsp;&nbsp;  l = 0;<br>
&nbsp;&nbsp;&nbsp;  while(Iter --)<br>
&nbsp;&nbsp;&nbsp;  {<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  avg = 0.0;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  for(i = 0; i &lt; 900; i ++)<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  {<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  s[i] = f(x[l][i], k);<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  avg += (double)s[i];<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  if(s[i] == 0)return false;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  }<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  l = 1 - l;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  for(i = 0; i &lt; 900; i ++)<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  {<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  a = rand()%900; b = rand()%900;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  if(s[a] &gt; s[b]){<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  x[l][i] = x[1-l][b];<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  }<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  else {<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  x[l][i] = x[1-l][a];<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  }<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  }<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  for(i = 0; i &lt; 100; i ++)<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  {<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  a = rand()%900; b = rand()%900;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  xx.x = 0.3 * x[l][a].x + 0.7 * x[l][b].x;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  xx.y = 0.3 * x[l][a].y + 0.7 * x[l][b].y;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  yy.x = 0.7 * x[l][a].x + 0.3 * x[l][b].x;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  yy.y = 0.7 * x[l][a].y + 0.3 * x[l][b].y;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  x[l][a] = xx;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  x[l][b] = yy;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  }<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  for(i = 0; i &lt; 100; i ++)<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  {<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  if(rrandom() &lt; 0.01)<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  {<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  x[l][i].x = (double)w*rrandom();<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  x[l][i].y = (double)h*rrandom();<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  cnt ++;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  }<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  }<br>
&nbsp;&nbsp;&nbsp;  }<br>
&nbsp;&nbsp;&nbsp;  //putchar('\n');<br>
&nbsp;&nbsp;&nbsp;  //printf(&quot;%d\n&quot;, cnt);<br>
&nbsp;&nbsp;&nbsp;  return true;<br>
}</p>
<p>int main()<br>
{<br>
&nbsp;&nbsp;&nbsp;  int i, j;<br>
&nbsp;&nbsp;&nbsp;  double left, right, mid;</p>
<p>&nbsp;&nbsp;&nbsp;  while(scanf(&quot;%d %d %d&quot;, &amp;n, &amp;w, &amp;h)!=EOF)<br>
&nbsp;&nbsp;&nbsp;  {<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  for(i = 0; i &lt; n; i ++)<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  {<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  scanf(&quot;%lf %lf %lf&quot;, &amp;p[i].x, &amp;p[i].y, &amp;r[i]);<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  }<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  left = 0.0; right = 100000;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  while(left&lt;right-1e-9)<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  {<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  mid = (left+right)/2.0;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  if(check(mid)){<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  right = mid;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  }<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  else {<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  left = mid;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  }<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  }<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  printf(&quot;%.3lf\n&quot;, left);<br>
&nbsp;&nbsp;&nbsp;  }<br>
&nbsp;&nbsp;&nbsp;  return 0;<br>
}</p> <a href="http://hi.baidu.com/yiyiyi4321/blog/item/72053338dbf01f2697ddd8d7.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/yiyiyi4321/blog/category/%C4%AC%C8%CF%B7%D6%C0%E0">默认分类</a>&nbsp;<a href="http://hi.baidu.com/yiyiyi4321/blog/item/72053338dbf01f2697ddd8d7.html#comment">查看评论</a>]]></description>
        <pubDate>2008-06-02  19:57</pubDate>
        <category><![CDATA[默认分类]]></category>
        <author><![CDATA[yiyiyi4321]]></author>
		<guid>http://hi.baidu.com/yiyiyi4321/blog/item/72053338dbf01f2697ddd8d7.html</guid>
</item>

<item>
        <title><![CDATA[TC的状态死也上不来]]></title>
        <link><![CDATA[http://hi.baidu.com/yiyiyi4321/blog/item/a95affec2e98e12263d09f73.html]]></link>
        <description><![CDATA[
		
		<p>SRM402做一半掉线交不上题，把我郁闷的……</p>
<p>SRM403  500分的题想到用矩阵，但是居然忘记了取模结果重交了一次，challenge的时候发现又忘了用long long，结果只有眼睁睁看着被人cha……</p>
<p>最近脑残真的很严重。</p> 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/yiyiyi4321/blog/category/%C4%AC%C8%CF%B7%D6%C0%E0">默认分类</a>&nbsp;<a href="http://hi.baidu.com/yiyiyi4321/blog/item/a95affec2e98e12263d09f73.html#comment">查看评论</a>]]></description>
        <pubDate>2008-05-29  10:52</pubDate>
        <category><![CDATA[默认分类]]></category>
        <author><![CDATA[yiyiyi4321]]></author>
		<guid>http://hi.baidu.com/yiyiyi4321/blog/item/a95affec2e98e12263d09f73.html</guid>
</item>

<item>
        <title><![CDATA[[TopCoder]SRM 401]]></title>
        <link><![CDATA[http://hi.baidu.com/yiyiyi4321/blog/item/d3e6a02495254a368744f9b5.html]]></link>
        <description><![CDATA[
		
		<p>中途掉线两次，然后奇迹般的交上了第一题，然后又掉了，终于再也登不上去了</p>
<p>在这里我只想说，校园网里那几位发ARP的兄弟行行好吧，放过我好不。。。</p>
<p>网速烂，我状态更烂，超简单的DP都写错。。。。无语了。。。</p>
<p> </p> 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/yiyiyi4321/blog/category/%C4%AC%C8%CF%B7%D6%C0%E0">默认分类</a>&nbsp;<a href="http://hi.baidu.com/yiyiyi4321/blog/item/d3e6a02495254a368744f9b5.html#comment">查看评论</a>]]></description>
        <pubDate>2008-05-06  11:30</pubDate>
        <category><![CDATA[默认分类]]></category>
        <author><![CDATA[yiyiyi4321]]></author>
		<guid>http://hi.baidu.com/yiyiyi4321/blog/item/d3e6a02495254a368744f9b5.html</guid>
</item>

<item>
        <title><![CDATA[[TopCoder]SRM 400]]></title>
        <link><![CDATA[http://hi.baidu.com/yiyiyi4321/blog/item/b4b6d144ec9e5a49510ffe95.html]]></link>
        <description><![CDATA[
		
		<p>三题全挂，cha错一次</p>
<p>-25分 daringQQ说有我的风格，哈哈</p>
<p>rating才降了150</p> 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/yiyiyi4321/blog/category/%C4%AC%C8%CF%B7%D6%C0%E0">默认分类</a>&nbsp;<a href="http://hi.baidu.com/yiyiyi4321/blog/item/b4b6d144ec9e5a49510ffe95.html#comment">查看评论</a>]]></description>
        <pubDate>2008-05-03  20:56</pubDate>
        <category><![CDATA[默认分类]]></category>
        <author><![CDATA[yiyiyi4321]]></author>
		<guid>http://hi.baidu.com/yiyiyi4321/blog/item/b4b6d144ec9e5a49510ffe95.html</guid>
</item>

<item>
        <title><![CDATA[从武汉比赛回来了]]></title>
        <link><![CDATA[http://hi.baidu.com/yiyiyi4321/blog/item/34d1c2ee55cdd62d2cf53439.html]]></link>
        <description><![CDATA[
		
		<p>差点黑了NUDT一把。。。</p>
<p>也许我很无聊。。。</p>
<p>在比赛还剩30分钟的时候，我一直期待比赛早点结束。。。</p>
<p>不过那是不可能的。。。</p>
<p>所以我意料之中的事还是发生了。。。</p>
<p>WOJ这里有一些rank...，我们队是Sword。</p>
<p><a href="http://acm.whu.edu.cn/08cc/index.php-page=final.htm">http://acm.whu.edu.cn/08cc/index.php-page=final.htm</a></p>
<p>To 新人:</p>
<p>我带的两个新人，是<a target="_blank" href="http://acm.hnu.cn:8080/online/?action=user&amp;type=status&amp;id=reason">reason</a>和<a target="_blank" href="http://acm.hnu.cn:8080/online/?action=user&amp;type=status&amp;id=huicpc229">huicpc229</a>，对于他们比赛的表现，我不能说好，也不能说差，我自己也没有做到一名老队员应该做的事。没有给他们太多锻炼机会，而过多的考虑了成绩。</p>
<p>对于<a target="_blank" href="http://acm.hnu.cn:8080/online/?action=user&amp;type=status&amp;id=reason">reason</a>，我想说的是少一点浮躁，多一点严谨和细心。我认为严谨的态度是一个数学院的学生必备的。</p>
<p>对于<a target="_blank" href="http://acm.hnu.cn:8080/online/?action=user&amp;type=status&amp;id=huicpc229">huicpc229</a>，我希望你不要认为计通院的人只懂得暴搜就够了，数学对于学计算机的人来说应该很重要的，我无法理解为什么你做了100多道题之后还不会计算程序的复杂度。</p>
<p>对于<a target="_blank" href="http://acm.hnu.cn:8080/online/?action=user&amp;type=status&amp;id=yilinghello">yilinghello</a>和<a target="_blank" href="http://acm.hnu.cn:8080/online/?action=user&amp;type=status&amp;id=huicpc3-15">huicpc3-15</a>，我认为你们的数学思维是很好的，头脑也很灵活，比我强得多，把那些算法都学好了之后应该会很强大，可惜的就是剩下的时间对你们来说有点短。不过也有很多ACMer在一年之内就修炼得很强，如<a target="_blank" href="http://acm.pku.edu.cn/JudgeOnline/userstatus?user_id=DaringQQ">DaringQQ</a>, <a target="_blank" href="http://acm.pku.edu.cn/JudgeOnline/userstatus?user_id=Wangfangbob">Wangfangbob</a>, <a target="_blank" href="http://acm.pku.edu.cn/JudgeOnline/userstatus?user_id=Sempr">Sempr</a>。</p>
<p>对于所有校队的队员，我希望你们多去<a target="_blank" href="http://acm.pku.edu.cn/JudgeOnline/">POJ</a>，<a target="_blank" href="http://acm.zju.edu.cn/">ZOJ</a>，<a target="_blank" href="http://acm.uva.es/">UVA</a>，<a target="_blank" href="http://www.topcoder.com/tc">TopCoder</a>。。。这些地方做比赛，和高手过招才会有提高，也许一开始你的排名会很后，但是只要你努力，随着你的实力的增强，你会看到你在比赛中的排名越来越靠前，你会切实感觉到自己的进步。你们应该把每次比赛没做到的题目老老实实地弄明白，然后做掉。<a target="_blank" href="http://acm.pku.edu.cn/JudgeOnline/">POJ</a>有很好的邮件系统和<a target="_blank" href="http://acm.pku.edu.cn/JudgeOnline/bbs">BBS</a>，有什么问题多和别人交流，无论是看别人的解题思路还是通过阅读别人的代码了解别人的代码技巧对你们都会很有帮助。</p>
<p> </p> <a href="http://hi.baidu.com/yiyiyi4321/blog/item/34d1c2ee55cdd62d2cf53439.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/yiyiyi4321/blog/category/%C4%AC%C8%CF%B7%D6%C0%E0">默认分类</a>&nbsp;<a href="http://hi.baidu.com/yiyiyi4321/blog/item/34d1c2ee55cdd62d2cf53439.html#comment">查看评论</a>]]></description>
        <pubDate>2008-03-31  07:15</pubDate>
        <category><![CDATA[默认分类]]></category>
        <author><![CDATA[yiyiyi4321]]></author>
		<guid>http://hi.baidu.com/yiyiyi4321/blog/item/34d1c2ee55cdd62d2cf53439.html</guid>
</item>

<item>
        <title><![CDATA[宣传一下我们的OJ]]></title>
        <link><![CDATA[http://hi.baidu.com/yiyiyi4321/blog/item/b25434d9cd7ab42810df9b50.html]]></link>
        <description><![CDATA[
		
		<p>宣传一下我们的OJ---<a target="_blank" href="http://acm.hnu.cn:8080/">acm.hnu.cn</a>, 顺便贴一些以前的比赛感言留念。。。</p>
<p>06华中区比赛</p>
<p><a href="http://acm.hnu.cn:8080/online/discuss/hostandfollow.jsp?hostid=535">http://acm.hnu.cn:8080/online/discuss/hostandfollow.jsp?hostid=535</a> (<a target="_blank" href="http://acm.hnu.cn:8080/online/?action=user&amp;type=status&amp;id=fuwutu">fuwutu</a>)</p>
<p><a href="http://acm.hnu.cn:8080/online/discuss/hostandfollow.jsp?hostid=537">http://acm.hnu.cn:8080/online/discuss/hostandfollow.jsp?hostid=537</a> (<a target="_blank" href="http://acm.hnu.cn:8080/online/?action=user&amp;type=status&amp;id=lower">lower</a>)</p>
<p>06省赛</p>
<p><a href="http://acm.hnu.cn:8080/online/discuss/hostandfollow.jsp?hostid=969">http://acm.hnu.cn:8080/online/discuss/hostandfollow.jsp?hostid=969</a> (杂)</p>
<p>06年上海赛区</p>
<p><a href="http://acm.hnu.cn:8080/online/discuss/hostandfollow.jsp?hostid=1140">http://acm.hnu.cn:8080/online/discuss/hostandfollow.jsp?hostid=1140</a> (<a target="_blank" href="http://acm.hnu.cn:8080/online/?action=user&amp;type=status&amp;id=yiyiyi4321">我的</a>)</p>
<p><a href="http://acm.hnu.cn:8080/online/discuss/hostandfollow.jsp?hostid=1160">http://acm.hnu.cn:8080/online/discuss/hostandfollow.jsp?hostid=1160</a> (<a target="_blank" href="http://acm.hnu.cn:8080/online/?action=user&amp;type=status&amp;id=zxysfish">张晓昱学姐的</a>)</p>
<p>06年西安赛区</p>
<p><a href="http://acm.hnu.cn:8080/online/discuss/hostandfollow.jsp?hostid=1195">http://acm.hnu.cn:8080/online/discuss/hostandfollow.jsp?hostid=1195</a> (<a target="_blank" href="http://acm.hnu.cn:8080/online/?action=user&amp;type=status&amp;id=TCT">TCT</a>)</p>
<p><a href="http://acm.hnu.cn:8080/online/discuss/hostandfollow.jsp?hostid=1196">http://acm.hnu.cn:8080/online/discuss/hostandfollow.jsp?hostid=1196</a> (<a href="http://acm.hnu.cn:8080/online/?action=user&amp;type=status&amp;id=ty0810716">ty0810716</a>)</p>
<p><a href="http://acm.hnu.cn:8080/online/discuss/hostandfollow.jsp?hostid=1199">http://acm.hnu.cn:8080/online/discuss/hostandfollow.jsp?hostid=1199</a> (<a target="_blank" href="http://acm.hnu.cn:8080/online/?action=user&amp;type=status&amp;id=birdman">birdman</a>转刘汝佳的)</p>
<p><a href="http://acm.hnu.cn:8080/online/discuss/hostandfollow.jsp?hostid=1113">http://acm.hnu.cn:8080/online/discuss/hostandfollow.jsp?hostid=1113</a> (<a target="_blank" href="http://acm.hnu.cn:8080/online/?action=user&amp;type=status&amp;id=lower">lower</a>转<font color="#417894">blizzard</font>的)</p>
<p>07年华中区</p>
<p><a href="http://acm.hnu.cn:8080/online/discuss/hostandfollow.jsp?hostid=1284">http://acm.hnu.cn:8080/online/discuss/hostandfollow.jsp?hostid=1284</a> (<a target="_blank" href="http://acm.hnu.cn:8080/online/?action=user&amp;type=status&amp;id=yiyiyi4321">我的</a>)</p>
<p><a href="http://acm.hnu.cn:8080/online/discuss/hostandfollow.jsp?hostid=1271">http://acm.hnu.cn:8080/online/discuss/hostandfollow.jsp?hostid=1271</a> (我转的IKKI的)</p>
<p>07年省赛</p>
<p><a href="http://acm.hnu.cn:8080/online/discuss/hostandfollow.jsp?hostid=1842">http://acm.hnu.cn:8080/online/discuss/hostandfollow.jsp?hostid=1842</a> (杂)</p>
<p>07年南京赛区网络赛</p>
<p><a href="http://acm.hnu.cn:8080/online/discuss/hostandfollow.jsp?hostid=1783">http://acm.hnu.cn:8080/online/discuss/hostandfollow.jsp?hostid=1783</a> (<a target="_blank" href="http://acm.hnu.cn:8080/online/?action=user&amp;type=status&amp;id=yiyiyi4321">我的</a>)</p> <a href="http://hi.baidu.com/yiyiyi4321/blog/item/b25434d9cd7ab42810df9b50.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/yiyiyi4321/blog/category/%C4%AC%C8%CF%B7%D6%C0%E0">默认分类</a>&nbsp;<a href="http://hi.baidu.com/yiyiyi4321/blog/item/b25434d9cd7ab42810df9b50.html#comment">查看评论</a>]]></description>
        <pubDate>2008-03-27  16:10</pubDate>
        <category><![CDATA[默认分类]]></category>
        <author><![CDATA[yiyiyi4321]]></author>
		<guid>http://hi.baidu.com/yiyiyi4321/blog/item/b25434d9cd7ab42810df9b50.html</guid>
</item>

<item>
        <title><![CDATA[一个强悍的域名--www.acrush.cn]]></title>
        <link><![CDATA[http://hi.baidu.com/yiyiyi4321/blog/item/4486c4453da40b3b879473d3.html]]></link>
        <description><![CDATA[
		
		<p>rt</p> 
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/yiyiyi4321/blog/category/%C4%AC%C8%CF%B7%D6%C0%E0">默认分类</a>&nbsp;<a href="http://hi.baidu.com/yiyiyi4321/blog/item/4486c4453da40b3b879473d3.html#comment">查看评论</a>]]></description>
        <pubDate>2008-03-25  14:38</pubDate>
        <category><![CDATA[默认分类]]></category>
        <author><![CDATA[yiyiyi4321]]></author>
		<guid>http://hi.baidu.com/yiyiyi4321/blog/item/4486c4453da40b3b879473d3.html</guid>
</item>

<item>
        <title><![CDATA[我的ACM经历(2)]]></title>
        <link><![CDATA[http://hi.baidu.com/yiyiyi4321/blog/item/c3715cd12a322bd7562c8412.html]]></link>
        <description><![CDATA[
		
		<p align="left" style="margin: 0cm 0cm 0pt; text-indent: 20pt; text-align: left;" class="MsoNormal"><span style="font-size: 10pt;">暑期很快就来到了，我是国防生要先军训一个月。军训完了马上赶到学校集训，集训就是天天做题，也许有人觉得天天做题很枯燥，但我一点也不觉得累。集训队里的林靖然学长，</span><span style="font-size: 10pt;"><font face="Times New Roman">Dancingblue</font></span><span style="font-size: 10pt;">学长，张晓昱学姐都挺能活跃气氛的。暑期</span><span style="font-size: 10pt;"><font face="Times New Roman">POJ</font></span><span style="font-size: 10pt;">的上的比赛也很频繁，我们也差不多是每场都做，有时候还能比出不错的名次，记得最好的一次我们队排进了前</span><span style="font-size: 10pt;"><font face="Times New Roman">10</font></span><span style="font-size: 10pt;">。于是我开始很期待赛区比赛的到来，不过心里还有一点忧虑就是感觉虽然天天做题但是水平并没有大的提高，似乎只是对</span><span style="font-size: 10pt;"><font face="Times New Roman">dfs,bfs</font></span><span style="font-size: 10pt;">这些算法更加熟悉了一点，然后就是写代码的能力好了一些，能做一些模拟题，其他的什么算法能力并没有提高。我感觉暑期集训并没有达到我预期的效果。</span></p>
<p align="left" style="margin: 0cm 0cm 0pt; text-indent: 20pt; text-align: left;" class="MsoNormal"><span style="font-size: 10pt;"><font face="Times New Roman">06</font></span><span style="font-size: 10pt;">年的省赛来得很早，我们自认为我们的对手只有国防科大，我们的轻敌让我们付出了代价。</span><span style="font-size: 10pt;">我们的糟糕表现不但没有对国防科大构成威胁，甚至还被一些平时不怎么起眼的学校超过了，我们只得了个三等奖。林靖然学长，盛，</span><span style="font-size: 10pt;"><font face="Times New Roman">relic</font></span><span style="font-size: 10pt;">组成的</span><span style="font-size: 10pt;"><font face="Times New Roman">zealor</font></span><span style="font-size: 10pt;">队发挥稍好一些，得到了二等奖。一等奖分别由国防科大和长沙理工夺得。博士对省赛成绩不满意，我们决定在</span><span style="font-size: 10pt;"><font face="Times New Roman">ACM/ICPC</font></span><span style="font-size: 10pt;">的赛区好好干，</span><span style="font-size: 10pt;"><font face="Times New Roman">zealor</font></span><span style="font-size: 10pt;">队首先去了北京赛区，清华出的题极其恶心，虽然</span><span style="font-size: 10pt;"><font face="Times New Roman">zealor</font></span><span style="font-size: 10pt;">只做出了一道题，但也得到了铜奖，据说还有只做一题就拿银奖的。然后我们队和女队去了上海赛区，我切下一道水题和一道找规律的题，</span><span style="font-size: 10pt;"><font face="Times New Roman">xnby</font></span><span style="font-size: 10pt;">水掉了一题，结果我们很幸运的也拿到了一块铜奖，并且离银奖很接近，虽然当时很不甘心，但是现在看来以我们当时的实力能做成那样已经很不错了。我们从上海赛区回来之后，集训队里肯继续做题的人除了我之外就剩下</span><span style="font-size: 10pt;"><font face="Times New Roman">TCT</font></span><span style="font-size: 10pt;">队和</span><span style="font-size: 10pt;"><font face="Times New Roman">Hunter</font></span><span style="font-size: 10pt;">队了，他们为争夺西安赛区的名额</span><span style="font-size: 10pt;"><font face="Times New Roman">PK</font></span><span style="font-size: 10pt;">得天昏地暗，我时常也和他们一起玩玩，不过我是一个人单挑。最后好心的博士还是都给了他们争取到了经费，让他们都去了西安赛区。不过成绩稍差的</span><span style="font-size: 10pt;"><font face="Times New Roman">Hunter</font></span><span style="font-size: 10pt;">队是去参加复活赛。赛区的比赛是激烈而残酷的，</span><span style="font-size: 10pt;"><font face="Times New Roman">Hunter</font></span><span style="font-size: 10pt;">和</span><span style="font-size: 10pt;"><font face="Times New Roman">TCT</font></span><span style="font-size: 10pt;">颗粒无收的从西安归来。我们</span><span style="font-size: 10pt;"><font face="Times New Roman">06</font></span><span style="font-size: 10pt;">年的赛区比赛以两块铜牌告终。</span></p>
<p align="left" style="margin: 0cm 0cm 0pt; text-indent: 20pt; text-align: left;" class="MsoNormal"><span style="font-size: 10pt;"><font face="Times New Roman">07</font></span><span style="font-size: 10pt;">年到了，林靖然学长也该毕业了，集训队轮到我们队挑大梁了。平时的月赛我们从参与者变成了组织者，而我却感觉队友对</span><span style="font-size: 10pt;"><font face="Times New Roman">ACM</font></span><span style="font-size: 10pt;">的兴趣越来越淡，因为我们队只有我还在坚持做题。盛为我们学校争取到办</span><span style="font-size: 10pt;"><font face="Times New Roman">TopCoder</font></span><span style="font-size: 10pt;">比赛的机会，</span><span style="font-size: 10pt;"><font face="Times New Roman">07</font></span><span style="font-size: 10pt;">年</span><span style="font-size: 10pt;"><font face="Times New Roman">3</font></span><span style="font-size: 10pt;">月</span><span style="font-size: 10pt;"><font face="Times New Roman">TopCoder</font></span><span style="font-size: 10pt;">湖南大学，国防科技大学编程挑战赛在湖大举行，我</span><span style="font-size: 10pt;"><font face="Times New Roman">RP</font></span><span style="font-size: 10pt;">很好的得了个二等奖，第一名被科大的</span><span style="font-size: 10pt;"><font face="Times New Roman">alpc02</font></span><span style="font-size: 10pt;">夺走，我们也有幸见到了传说中的吴莹莹和吴嘉之。之后就是武大的邀请赛和科大的邀请赛，我们队分别得了二等奖和三等奖，这成绩虽然比去年好，但是我却有一种危机感，队友的状态在下滑，我们队对我的依赖越来越严重，对于一个队来说，这绝不是什么好事情。这种危机在校赛的时候表面化了，一向在校内赛所向披靡的我们队输给</span><span style="font-size: 10pt;"><font face="Times New Roman">TCT</font></span><span style="font-size: 10pt;">队。</span></p>
<p align="left" style="margin: 0cm 0cm 0pt; text-align: left;" class="MsoNormal"><span style="font-size: 12pt;"><span>&nbsp;&nbsp;   </span></span><span style="font-size: 10pt;">暑期集训又到了，我的任务是做题</span><span style="font-size: 10pt;"><font face="Times New Roman">+</font></span><span style="font-size: 10pt;">出题，我无意中上了</span><span style="font-size: 10pt;"><font face="Times New Roman">yzfy.org</font></span><span style="font-size: 10pt;">这个网站，进而加入雨中飞燕这个群，在这里我认识中山大学的</span><span style="font-size: 10pt;"><font face="Times New Roman">ailyanlu</font></span><span style="font-size: 10pt;">和南开大学的</span><span style="font-size: 10pt;"><font face="Times New Roman">wangfangbob</font></span><span style="font-size: 10pt;">，和他们的讨论让我受益非浅，</span><span style="font-size: 10pt;"><font face="Times New Roman">ailyanlu</font></span><span style="font-size: 10pt;">让我明白了我的图论和网络流学得有多烂，</span><span style="font-size: 10pt;"><font face="Times New Roman">wangfangbob</font></span><span style="font-size: 10pt;">做</span><span style="font-size: 10pt;"><font face="Times New Roman">BT</font></span><span style="font-size: 10pt;">题的能力让我汗颜。我也开始学许多自己不熟悉的东西，如后缀数组，</span><span style="font-size: 10pt;"><font face="Times New Roman">2-sat</font></span><span style="font-size: 10pt;">，最小费，最小度限制生成树……，但是我平庸的数学能力让我只能对这些东西有个肤浅的认识，无法做深入的研究。</span><span style="font-size: 10pt;"><font face="Times New Roman">Xnby</font></span><span style="font-size: 10pt;">在暑期培训中的状态好了很多，常常拿下练习赛的第一，</span><span style="font-size: 10pt;"><font face="Times New Roman">Relic</font></span><span style="font-size: 10pt;">也常有不错的表现。在新人中</span><span style="font-size: 10pt;"><font face="Times New Roman">Huicpc302,Huicpc305</font></span><span style="font-size: 10pt;">也很抢眼，湖大</span><span style="font-size: 10pt;"><font face="Times New Roman">ACM</font></span><span style="font-size: 10pt;">似乎有了新的生机。</span></p>
<p style="margin: 0cm 0cm 0pt; text-indent: 20pt;" class="MsoNormal"><span style="font-size: 10pt;">博士本着强强联手的原则，让我，</span><span style="font-size: 10pt;"><font face="Times New Roman">xnby</font></span><span style="font-size: 10pt;">和</span><span style="font-size: 10pt;"><font face="Times New Roman">relic</font></span><span style="font-size: 10pt;">组成了新的</span><span style="font-size: 10pt;"><font face="Times New Roman">footmen</font></span><span style="font-size: 10pt;">队，在接下来的省赛中，我们也不负众望，从科大手中抢到了一个一等奖。但是在我们这个队中潜在着一个新的危机：我们之间的配合太少，比赛的时候倾向于各自为战，各自的特点也不鲜明，没有擅长数学题的人。在南京赛区和长春赛区，这种危机浮出水面。这两个赛区比赛可以说我们状态不好，可以说我们资料准备不够充分，可以说题目</span><span style="font-size: 10pt;"><font face="Times New Roman">BT</font></span><span style="font-size: 10pt;">，但总之一点我们输了，而且输得很难看。南京赛区颗粒无收，长春赛区的铜牌是因为某题放宽时限才得到的，同去的</span><span style="font-size: 10pt;"><font face="Times New Roman">Hunter</font></span><span style="font-size: 10pt;">队比得都比我们好。从长春回来的那几天我想了很多很多，想起了以前的努力，想起了以前看到的其他学校</span><span style="font-size: 10pt;"><font face="Times New Roman">ACMer</font></span><span style="font-size: 10pt;">的经历，也思考了很久我们失败的原因，我的心情变得平静了许多。接下来</span><span style="font-size: 10pt;"><font face="Times New Roman">Hunter</font></span><span style="font-size: 10pt;">队在北京赛区有不错的发挥，可惜终究是离银牌擦肩而过。最后一个赛区是成都赛区，博士将派出</span><span style="font-size: 10pt;"><font face="Times New Roman">TCT</font></span><span style="font-size: 10pt;">队和</span><span style="font-size: 10pt;"><font face="Times New Roman">zealor</font></span><span style="font-size: 10pt;">队，正当我以为我的</span><span style="font-size: 10pt;"><font face="Times New Roman">ACM</font></span><span style="font-size: 10pt;">生涯已经结束的时候，</span><span style="font-size: 10pt;"><font face="Times New Roman">zealor</font></span><span style="font-size: 10pt;">队的盛提出要把机会让给我，我很清楚这次比赛也是他的最后一次机会，所以我一开始并不想答应他，但是盛的劝说和我自己的不甘心让我最终接受了他的好意，我与</span><span style="font-size: 10pt;"><font face="Times New Roman">hekui</font></span><span style="font-size: 10pt;">，</span><span style="font-size: 10pt;"><font face="Times New Roman">huicpc302</font></span><span style="font-size: 10pt;">组成新的</span><span style="font-size: 10pt;"><font face="Times New Roman">zealor</font></span><span style="font-size: 10pt;">队出战成都赛区。论个人能力</span><span style="font-size: 10pt;"><font face="Times New Roman">hekui</font></span><span style="font-size: 10pt;">和</span><span style="font-size: 10pt;"><font face="Times New Roman">huicpc302</font></span><span style="font-size: 10pt;">当然比不过</span><span style="font-size: 10pt;"><font face="Times New Roman">xnby</font></span><span style="font-size: 10pt;">和</span><span style="font-size: 10pt;"><font face="Times New Roman">relic</font></span><span style="font-size: 10pt;">，但是</span><span style="font-size: 10pt;"><font face="Times New Roman">huicpc302</font></span><span style="font-size: 10pt;">的数学能力和英语能力刚好可以和我互补，</span><span style="font-size: 10pt;"><font face="Times New Roman">hekui</font></span><span style="font-size: 10pt;">则比较能够调节队内的气氛，因此和他们组队我觉得可以一搏。</span></p>
<p style="margin: 0cm 0cm 0pt; text-indent: 20pt;" class="MsoNormal"><span style="font-size: 10pt;">成都赛区的练习赛，我切完三题，感觉良好。正式比赛开始了，我们磕磕绊绊的</span><span style="font-size: 10pt;"><font face="Times New Roman">AC</font></span><span style="font-size: 10pt;">了</span><span style="font-size: 10pt;"><font face="Times New Roman">3</font></span><span style="font-size: 10pt;">题后排在</span><span style="font-size: 10pt;"><font face="Times New Roman">29</font></span><span style="font-size: 10pt;">名，是拿银牌的边缘，当时离比赛结束还有一个多小时，因此我们必须再</span><span style="font-size: 10pt;"><font face="Times New Roman">AC</font></span><span style="font-size: 10pt;">一个题目才能确保银牌，剩下可以做的题有一个和二进制有关的题和一个图论的题。在思考二进制题目一段时间我依然感觉没有头绪，于是我立即转攻图论的题。图论题我很快想到了算法，然后马上开始写代码，在写代码的时候，我发现原来这个题还有很多小细节要处理，时间已经不允许我们再换题了，剩下的时间里我们做的事就是讨论特殊情况，出数据测试，调试程序，提交。可惜没有一次提交返回</span><span style="font-size: 10pt;"><font face="Times New Roman">Yes</font></span><span style="font-size: 10pt;">。在最后几分钟，我又想到了一种特殊情况，我的程序并没有考虑到这种情况。于是改了赶紧交，但又发现改出来的程序有新的问题，接着就继续改，当全场开始读秒的时候我改完了，很多人都在跟着读秒，但我哪有心情读？直接一个</span><span style="font-size: 10pt;"><font face="Times New Roman">ctrl+s</font></span><span style="font-size: 10pt;">，连编译都没编译，就直接</span><span style="font-size: 10pt;"><font face="Times New Roman">submit</font></span><span style="font-size: 10pt;">了，然后比赛就结束了。我把这个程序一测试，发现能够处理我们之前考虑的那些特殊情况，于是心里还存有一丝希望。但是由于最后一分钟交题的人很多，我们这个程序的结果迟迟没有出来。我感觉有些累了，就趴在桌子上。而当我抬起头，再看屏幕的时候发现屏幕中间多了个框，框里面写着</span><span style="font-size: 10pt;"><font face="Times New Roman">Yes</font></span><span style="font-size: 10pt;">，我的精神有点恍惚，但又猛然反应过来，但还是不敢相信自己的眼睛，刷新了几次确认没有看错之后，我大叫了一声</span><span style="font-size: 10pt;"><font face="Times New Roman">Yes</font></span><span style="font-size: 10pt;">，然后把</span><span style="font-size: 10pt;"><font face="Times New Roman">huicpc302</font></span><span style="font-size: 10pt;">叫过来，把博士叫了过来，把</span><span style="font-size: 10pt;"><font face="Times New Roman">hekui</font></span><span style="font-size: 10pt;">叫了过来，把</span><span style="font-size: 10pt;"><font face="Times New Roman">TCT</font></span><span style="font-size: 10pt;">的人也叫了过来。大家紧绷的脸上露出了笑容，科大的</span><span style="font-size: 10pt;"><font face="Times New Roman">alpc02</font></span><span style="font-size: 10pt;">也过来祝贺我们。就这样，</span><span style="font-size: 10pt;"><font face="Times New Roman">HNU</font></span><span style="font-size: 10pt;">的</span><span style="font-size: 10pt;"><font face="Times New Roman">ACM</font></span><span style="font-size: 10pt;">队终于得到第一块银牌，我的</span><span style="font-size: 10pt;"><font face="Times New Roman">ACM</font></span><span style="font-size: 10pt;">生活也就这样结束了。</span></p> <a href="http://hi.baidu.com/yiyiyi4321/blog/item/c3715cd12a322bd7562c8412.html">阅读全文</a>
		
		<br/><b>类别：</b><a href="http://hi.baidu.com/yiyiyi4321/blog/category/%C4%AC%C8%CF%B7%D6%C0%E0">默认分类</a>&nbsp;<a href="http://hi.baidu.com/yiyiyi4321/blog/item/c3715cd12a322bd7562c8412.html#comment">查看评论</a>]]></description>
        <pubDate>2008-03-23  01:33</pubDate>
        <category><![CDATA[默认分类]]></category>
        <author><![CDATA[yiyiyi4321]]></author>
		<guid>http://hi.baidu.com/yiyiyi4321/blog/item/c3715cd12a322bd7562c8412.html</guid>
</item>


</channel>
</rss>