﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>C++博客-尼克舅姑</title><link>http://www.cppblog.com/NickGu/</link><description>Nick9Gu</description><language>zh-cn</language><lastBuildDate>Thu, 23 Apr 2026 10:08:44 GMT</lastBuildDate><pubDate>Thu, 23 Apr 2026 10:08:44 GMT</pubDate><ttl>60</ttl><item><title>贝叶斯分类器实验</title><link>http://www.cppblog.com/NickGu/archive/2009/10/08/98058.html</link><dc:creator>Nick9Gu</dc:creator><author>Nick9Gu</author><pubDate>Wed, 07 Oct 2009 16:30:00 GMT</pubDate><guid>http://www.cppblog.com/NickGu/archive/2009/10/08/98058.html</guid><wfw:comment>http://www.cppblog.com/NickGu/comments/98058.html</wfw:comment><comments>http://www.cppblog.com/NickGu/archive/2009/10/08/98058.html#Feedback</comments><slash:comments>4</slash:comments><wfw:commentRss>http://www.cppblog.com/NickGu/comments/commentRss/98058.html</wfw:commentRss><trackback:ping>http://www.cppblog.com/NickGu/services/trackbacks/98058.html</trackback:ping><description><![CDATA[使用的就是mitchell的那本ML中关于naive bayesian classifier讲解用到的<a title="啊"  href="http://www.cs.cmu.edu/afs/cs/project/theo-11/www/naive-bayes.html">数据</a>。20个邮件组的邮件，共约20000条记录。<br><br>主要是实践了下naive bayesian classifier。做了两个集合的实验，包括全集和书中实践的小集合（3个特定的邮件组集合）。<br>全集上最后的准确率可以达到83.7%。而使用小集合对比书中的（89%-90.5%），可以达到91.3%的准确率。<br><br>其中有一些需要注意的：<br>1. 对低频概率的光滑操作很重要。主要用于计算P(w|g)时在w频次很低的情况下。<br>&nbsp;&nbsp; 如果没有光滑，答案整个就被误差毁了，直接准确率掉到20%以下。<br>&nbsp;&nbsp; 如果使用P(w|g)=(C(g,w)+1)/(C(g,all_w)+C(words_in_g))可以保证结果达到预期水平<br>&nbsp;&nbsp; 如果使用P(w|g)=(C(g,w)+1)/(C(g,all_w)+C(words))结果还更好些。这似乎和预期不是很符合。<br>2. 对stopword的选取。<br>&nbsp;&nbsp; 使用idf作为选择标准（不取log）。刚开始选定的覆盖文章范围在0.6才去除。后来发现一直到1/12都能保证单调递增。效果不错。<br>3. 既然bayesian是逆概，还尝试了正向概率计算求答案，也是使之相互独立。准确率在75%左右。怀疑是模型本身并不是reasonable的。（就是比naive bayesian还不靠谱）<br><br>从误分类的数据来看，有些确实是无法很好分类。同时后续改进还有这么一些方法：<br>1. 低频词的影响。<br>2. 调整模型，使之更好去识别。这在看论文。看看是否可行。<br><br>同时今天还看了一篇介绍bayesian的一些应用之处的<a  href="http://mindhacks.cn/2008/09/21/the-magical-bayesian-method/">文章</a>。讲的很广泛，把很多知识都串一起了。很好！<br><br><br><br><img src ="http://www.cppblog.com/NickGu/aggbug/98058.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/NickGu/" target="_blank">Nick9Gu</a> 2009-10-08 00:30 <a href="http://www.cppblog.com/NickGu/archive/2009/10/08/98058.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>{看论文}k最短路</title><link>http://www.cppblog.com/NickGu/archive/2009/06/14/87668.html</link><dc:creator>Nick9Gu</dc:creator><author>Nick9Gu</author><pubDate>Sun, 14 Jun 2009 14:44:00 GMT</pubDate><guid>http://www.cppblog.com/NickGu/archive/2009/06/14/87668.html</guid><wfw:comment>http://www.cppblog.com/NickGu/comments/87668.html</wfw:comment><comments>http://www.cppblog.com/NickGu/archive/2009/06/14/87668.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cppblog.com/NickGu/comments/commentRss/87668.html</wfw:commentRss><trackback:ping>http://www.cppblog.com/NickGu/services/trackbacks/87668.html</trackback:ping><description><![CDATA[Finding the k shortest paths, <font size="-1">D Eppstein</font>
<br><br>这篇论文不错。方法很好，但是我觉得读的有点拗口。<br>说几个重点nb的吧。<br>1. 能够将路径用最短路径树和&#8220;弯路&#8221;表示<br>2. 考虑到路径的层次结构。<br>如果考虑到以上两点会有很多启发的，之后还有几个nb的：<br>3. 把堆表示在dag上。<br>4. 这个最最nb,很容易考虑到每次找到一个最小后缀，然后更新堆，但这样复杂度就是nm的。而其通过将每个点的后缀重新组织成一个小堆。就控制住复杂度了！<br><br>这篇论文之前比赛的时候就很想看，后来搞输入法的时候又听说了，还是没时间看。今天花了一下午看了还是挺开心的。不过觉得他有的地方方法有些冗余或者说不是很优，什么时候再细细想想。今天好困。。。<br><br> <img src ="http://www.cppblog.com/NickGu/aggbug/87668.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/NickGu/" target="_blank">Nick9Gu</a> 2009-06-14 22:44 <a href="http://www.cppblog.com/NickGu/archive/2009/06/14/87668.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>{NLP}最大概率分词问题及其解法</title><link>http://www.cppblog.com/NickGu/archive/2009/06/06/86900.html</link><dc:creator>Nick9Gu</dc:creator><author>Nick9Gu</author><pubDate>Sat, 06 Jun 2009 04:00:00 GMT</pubDate><guid>http://www.cppblog.com/NickGu/archive/2009/06/06/86900.html</guid><wfw:comment>http://www.cppblog.com/NickGu/comments/86900.html</wfw:comment><comments>http://www.cppblog.com/NickGu/archive/2009/06/06/86900.html#Feedback</comments><slash:comments>5</slash:comments><wfw:commentRss>http://www.cppblog.com/NickGu/comments/commentRss/86900.html</wfw:commentRss><trackback:ping>http://www.cppblog.com/NickGu/services/trackbacks/86900.html</trackback:ping><description><![CDATA[<h4>最大概率分词问题及其解法，hit的刘挺等，1998</h4>
这篇文章前面给出的一些模型对我这个新手来说不错。后面对问题的解决一般。<br>第一个问题是找分割点，这个很简单，在找到每个点的最远距离后，O(n)扫一遍就可以了。<br>第二个问题是每个字段内的最优概率计算。这个如果按原有的概率算比较难，n-gram的n不确定，不过他这里用的是unigram<br>这样就简单多了。。取log以后最短路，dp啥的爱咋搞咋搞。<br><br><br>     <img src ="http://www.cppblog.com/NickGu/aggbug/86900.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/NickGu/" target="_blank">Nick9Gu</a> 2009-06-06 12:00 <a href="http://www.cppblog.com/NickGu/archive/2009/06/06/86900.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>{解题报告}德黑兰2005 [PKU2894-2903]</title><link>http://www.cppblog.com/NickGu/archive/2008/11/07/66218.html</link><dc:creator>Nick9Gu</dc:creator><author>Nick9Gu</author><pubDate>Fri, 07 Nov 2008 08:08:00 GMT</pubDate><guid>http://www.cppblog.com/NickGu/archive/2008/11/07/66218.html</guid><wfw:comment>http://www.cppblog.com/NickGu/comments/66218.html</wfw:comment><comments>http://www.cppblog.com/NickGu/archive/2008/11/07/66218.html#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://www.cppblog.com/NickGu/comments/commentRss/66218.html</wfw:commentRss><trackback:ping>http://www.cppblog.com/NickGu/services/trackbacks/66218.html</trackback:ping><description><![CDATA[最近越来越懒了。。做题有头没尾的，贴个报告。德黑兰2005的。还差一道题。<br><br>
<table style="border-collapse: collapse;" width="980" background="images/table_back.jpg" border="1" bordercolor="#ffffff" cellpadding="0" cellspacing="0">
    <tbody>
        <tr>
            <td><img src="http://acm.pku.edu.cn/JudgeOnline/images/accepted.gif"></td>
            <td>2894</td>
            <td><a href="http://acm.pku.edu.cn/JudgeOnline/problem?id=2894">Ancient Keyboard</a></td>
            <td align="center"><a href="http://acm.pku.edu.cn/JudgeOnline/problemstatus?problem_id=2894" target="_blank">858</a></td>
            <td>Tehran 2005</td>
        </tr>
        <tr>
            <td><img src="http://acm.pku.edu.cn/JudgeOnline/images/accepted.gif"></td>
            <td>2895</td>
            <td><a href="http://acm.pku.edu.cn/JudgeOnline/problem?id=2895">Best SMS to Type</a></td>
            <td align="center"><a href="http://acm.pku.edu.cn/JudgeOnline/problemstatus?problem_id=2895" target="_blank">909</a></td>
            <td>Tehran 2005</td>
        </tr>
        <tr>
            <td><img src="http://acm.pku.edu.cn/JudgeOnline/images/accepted.gif"></td>
            <td>2896</td>
            <td><a href="http://acm.pku.edu.cn/JudgeOnline/problem?id=2896">Changing Phone Numbers</a></td>
            <td align="center"><a href="http://acm.pku.edu.cn/JudgeOnline/problemstatus?problem_id=2896" target="_blank">98</a></td>
            <td>Tehran 2005</td>
        </tr>
        <tr>
            <td><img src="http://acm.pku.edu.cn/JudgeOnline/images/accepted.gif"></td>
            <td>2897</td>
            <td><a href="http://acm.pku.edu.cn/JudgeOnline/problem?id=2897">Dramatic Multiplications</a></td>
            <td align="center"><a href="http://acm.pku.edu.cn/JudgeOnline/problemstatus?problem_id=2897" target="_blank">614</a></td>
            <td>Tehran 2005</td>
        </tr>
        <tr>
            <td><img src="http://acm.pku.edu.cn/JudgeOnline/images/accepted.gif"></td>
            <td>2898</td>
            <td><a href="http://acm.pku.edu.cn/JudgeOnline/problem?id=2898">Entertainment</a></td>
            <td align="center"><a href="http://acm.pku.edu.cn/JudgeOnline/problemstatus?problem_id=2898" target="_blank">230</a></td>
            <td>Tehran 2005</td>
        </tr>
        <tr>
            <td><img src="http://acm.pku.edu.cn/JudgeOnline/images/accepted.gif"></td>
            <td>2899</td>
            <td><a href="http://acm.pku.edu.cn/JudgeOnline/problem?id=2899">Fortune at El Dorado</a></td>
            <td align="center"><a href="http://acm.pku.edu.cn/JudgeOnline/problemstatus?problem_id=2899" target="_blank">105</a></td>
            <td>Tehran 2005</td>
        </tr>
        <tr>
            <td><img src="http://acm.pku.edu.cn/JudgeOnline/images/accepted.gif"></td>
            <td>2900</td>
            <td><a href="http://acm.pku.edu.cn/JudgeOnline/problem?id=2900">Griddy Hobby</a></td>
            <td align="center"><a href="http://acm.pku.edu.cn/JudgeOnline/problemstatus?problem_id=2900" target="_blank">94</a></td>
            <td>Tehran 2005</td>
        </tr>
        <tr>
            <td><img src="http://acm.pku.edu.cn/JudgeOnline/images/accepted.gif"></td>
            <td>2901</td>
            <td><a href="http://acm.pku.edu.cn/JudgeOnline/problem?id=2901">Hotel</a></td>
            <td align="center"><a href="http://acm.pku.edu.cn/JudgeOnline/problemstatus?problem_id=2901" target="_blank">70</a></td>
            <td>Tehran 2005</td>
        </tr>
        <tr>
            <td><img src="http://acm.pku.edu.cn/JudgeOnline/images/accepted.gif"></td>
            <td>2902</td>
            <td><a href="http://acm.pku.edu.cn/JudgeOnline/problem?id=2902">Intercepting Missiles</a></td>
            <td align="center"><a href="http://acm.pku.edu.cn/JudgeOnline/problemstatus?problem_id=2902" target="_blank">31</a></td>
            <td>Tehran 2005</td>
        </tr>
        <tr>
            <td>&nbsp;</td>
            <td>2903</td>
            <td><a href="http://acm.pku.edu.cn/JudgeOnline/problem?id=2903">Joy of Mobile Routing</a></td>
            <td align="center"><a href="http://acm.pku.edu.cn/JudgeOnline/problemstatus?problem_id=2903" target="_blank">15</a></td>
            <td>Tehran 2005</td>
        </tr>
    </tbody>
</table>
<br><br><a id="publishedDocumentUrl" class="tabcontent" target="_blank" href="http://docs.google.com/Doc?id=dhc6v8gg_126gmw86hgd">http://docs.google.com/Doc?id=dhc6v8gg_126gmw86hgd</a>
<br><br> <img src ="http://www.cppblog.com/NickGu/aggbug/66218.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/NickGu/" target="_blank">Nick9Gu</a> 2008-11-07 16:08 <a href="http://www.cppblog.com/NickGu/archive/2008/11/07/66218.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>{解题报告} NEERC2005 解题报告，PKU2791-2801</title><link>http://www.cppblog.com/NickGu/archive/2008/10/23/64837.html</link><dc:creator>Nick9Gu</dc:creator><author>Nick9Gu</author><pubDate>Thu, 23 Oct 2008 08:40:00 GMT</pubDate><guid>http://www.cppblog.com/NickGu/archive/2008/10/23/64837.html</guid><wfw:comment>http://www.cppblog.com/NickGu/comments/64837.html</wfw:comment><comments>http://www.cppblog.com/NickGu/archive/2008/10/23/64837.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cppblog.com/NickGu/comments/commentRss/64837.html</wfw:commentRss><trackback:ping>http://www.cppblog.com/NickGu/services/trackbacks/64837.html</trackback:ping><description><![CDATA[这个写的太匆忙了。。凑合看看吧。。<br><br><br>
<table style="border-collapse: collapse;" width="980" background="images/table_back.jpg" border="1" bordercolor="#ffffff" cellpadding="0" cellspacing="0">
    <tbody>
        <tr>
            <td><img src="http://acm.pku.cn/JudgeOnline/images/accepted.gif"></td>
            <td>2791</td>
            <td><a href="http://acm.pku.cn/JudgeOnline/problem?id=2791">Area 51</a></td>
            <td align="center"><a href="http://acm.pku.cn/JudgeOnline/problemstatus?problem_id=2791" target="_blank">107</a></td>
            <td>Northeastern Europe 2005</td>
        </tr>
        <tr>
            <td><img src="http://acm.pku.cn/JudgeOnline/images/accepted.gif"></td>
            <td>2792</td>
            <td><a href="http://acm.pku.cn/JudgeOnline/problem?id=2792">Brackets Removal</a></td>
            <td align="center"><a href="http://acm.pku.cn/JudgeOnline/problemstatus?problem_id=2792" target="_blank">81</a></td>
            <td>Northeastern Europe 2005</td>
        </tr>
        <tr>
            <td><img src="http://acm.pku.cn/JudgeOnline/images/accepted.gif"></td>
            <td>2793</td>
            <td><a href="http://acm.pku.cn/JudgeOnline/problem?id=2793">Cactus</a></td>
            <td align="center"><a href="http://acm.pku.cn/JudgeOnline/problemstatus?problem_id=2793" target="_blank">103</a></td>
            <td>Northeastern Europe 2005</td>
        </tr>
        <tr>
            <td><img src="http://acm.pku.cn/JudgeOnline/images/accepted.gif"></td>
            <td>2794</td>
            <td><a href="http://acm.pku.cn/JudgeOnline/problem?id=2794">Double Patience</a></td>
            <td align="center"><a href="http://acm.pku.cn/JudgeOnline/problemstatus?problem_id=2794" target="_blank">150</a></td>
            <td>Northeastern Europe 2005</td>
        </tr>
        <tr>
            <td><img src="http://acm.pku.cn/JudgeOnline/images/accepted.gif"></td>
            <td>2795</td>
            <td><a href="http://acm.pku.cn/JudgeOnline/problem?id=2795">Exploring Pyramids</a></td>
            <td align="center"><a href="http://acm.pku.cn/JudgeOnline/problemstatus?problem_id=2795" target="_blank">191</a></td>
            <td>Northeastern Europe 2005</td>
        </tr>
        <tr>
            <td><img src="http://acm.pku.cn/JudgeOnline/images/accepted.gif"></td>
            <td>2796</td>
            <td><a href="http://acm.pku.cn/JudgeOnline/problem?id=2796">Feel Good</a></td>
            <td align="center"><a href="http://acm.pku.cn/JudgeOnline/problemstatus?problem_id=2796" target="_blank">515</a></td>
            <td>Northeastern Europe 2005</td>
        </tr>
        <tr>
            <td><img src="http://acm.pku.cn/JudgeOnline/images/accepted.gif"></td>
            <td>2797</td>
            <td><a href="http://acm.pku.cn/JudgeOnline/problem?id=2797">Guards</a></td>
            <td align="center"><a href="http://acm.pku.cn/JudgeOnline/problemstatus?problem_id=2797" target="_blank">34</a></td>
            <td>Northeastern Europe 2005</td>
        </tr>
        <tr>
            <td><img src="http://acm.pku.cn/JudgeOnline/images/accepted.gif"></td>
            <td>2798</td>
            <td><a href="http://acm.pku.cn/JudgeOnline/problem?id=2798">Hardwood Cutting</a></td>
            <td align="center"><a href="http://acm.pku.cn/JudgeOnline/problemstatus?problem_id=2798" target="_blank">53</a></td>
            <td>Northeastern Europe 2005</td>
        </tr>
        <tr>
            <td><img src="http://acm.pku.cn/JudgeOnline/images/accepted.gif"></td>
            <td>2799</td>
            <td><a href="http://acm.pku.cn/JudgeOnline/problem?id=2799">IP Networks</a></td>
            <td align="center"><a href="http://acm.pku.cn/JudgeOnline/problemstatus?problem_id=2799" target="_blank">422</a></td>
            <td>Northeastern Europe 2005</td>
        </tr>
        <tr>
            <td><img src="http://acm.pku.cn/JudgeOnline/images/accepted.gif"></td>
            <td>2800</td>
            <td><a href="http://acm.pku.cn/JudgeOnline/problem?id=2800">Joseph's Problem</a></td>
            <td align="center"><a href="http://acm.pku.cn/JudgeOnline/problemstatus?problem_id=2800" target="_blank">446</a></td>
            <td>Northeastern Europe 2005</td>
        </tr>
        <tr>
            <td><img src="http://acm.pku.cn/JudgeOnline/images/accepted.gif"></td>
            <td>2801</td>
            <td><a href="http://acm.pku.cn/JudgeOnline/problem?id=2801">Knockdown</a></td>
            <td align="center"><a href="http://acm.pku.cn/JudgeOnline/problemstatus?problem_id=2801" target="_blank">22</a></td>
            <td>Northeastern Europe 2005</td>
        </tr>
    </tbody>
</table>
<br><br><a  href="http://www.cppblog.com/Files/NickGu/neerc2005.pdf">http://www.cppblog.com/Files/NickGu/neerc2005.pdf</a><br><br><img src ="http://www.cppblog.com/NickGu/aggbug/64837.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/NickGu/" target="_blank">Nick9Gu</a> 2008-10-23 16:40 <a href="http://www.cppblog.com/NickGu/archive/2008/10/23/64837.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>哈尔滨归来</title><link>http://www.cppblog.com/NickGu/archive/2008/10/14/63956.html</link><dc:creator>Nick9Gu</dc:creator><author>Nick9Gu</author><pubDate>Tue, 14 Oct 2008 06:39:00 GMT</pubDate><guid>http://www.cppblog.com/NickGu/archive/2008/10/14/63956.html</guid><wfw:comment>http://www.cppblog.com/NickGu/comments/63956.html</wfw:comment><comments>http://www.cppblog.com/NickGu/archive/2008/10/14/63956.html#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://www.cppblog.com/NickGu/comments/commentRss/63956.html</wfw:commentRss><trackback:ping>http://www.cppblog.com/NickGu/services/trackbacks/63956.html</trackback:ping><description><![CDATA[最终结果是金牌，但没有进入Final。还是能接受的结果，但毕竟还有进步的余地，希望下次能再好点。<br>题目难度一般，不过阅读和题量比较大，所以还是挺郁闷的。我当时基本都在敲代码没多少需要想的题。。<br>还是要多多练习啊。<br><br>PS.火车上听说bamboo他们硬敲了D题。。700多行代码无模板。。Orz。。<br><br> <img src ="http://www.cppblog.com/NickGu/aggbug/63956.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/NickGu/" target="_blank">Nick9Gu</a> 2008-10-14 14:39 <a href="http://www.cppblog.com/NickGu/archive/2008/10/14/63956.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>{思路} 关于学习，自我调节</title><link>http://www.cppblog.com/NickGu/archive/2008/10/02/63169.html</link><dc:creator>Nick9Gu</dc:creator><author>Nick9Gu</author><pubDate>Thu, 02 Oct 2008 15:05:00 GMT</pubDate><guid>http://www.cppblog.com/NickGu/archive/2008/10/02/63169.html</guid><wfw:comment>http://www.cppblog.com/NickGu/comments/63169.html</wfw:comment><comments>http://www.cppblog.com/NickGu/archive/2008/10/02/63169.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cppblog.com/NickGu/comments/commentRss/63169.html</wfw:commentRss><trackback:ping>http://www.cppblog.com/NickGu/services/trackbacks/63169.html</trackback:ping><description><![CDATA[最近其实看了很多相关的内容，比如Petr在某次TCHS前在房间里面和别人聊天的内容啊，之前自己也想过有时候自己太勉强自己了，应该在需要休息的时候放松啊。今天又觉得，其实像现在如果比较不在状态的时候，可以尝试去看看以前的笔记啊，写点总结啊啥的。都挺好的。总之要自我调节，不可太急躁。<br><br>这篇日志作为一篇开放式的吧，我想到啥就过来加点，作为自己的一个小Tips。<br><br>
<ul>
    <li>我需要静一静，写代码是一项需要安静的工作，做自己的就应该少说话。[2008年10月4日13:27:40]</li>
    <li>昨天做一个问题一直在网上搜索没有好的答案。但后来和小亮交流下回去自己静静想想就会了，其实并不复杂，但自己没有静下来好好想想才导致自己半天没弄出来。<br></li>
</ul><img src ="http://www.cppblog.com/NickGu/aggbug/63169.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/NickGu/" target="_blank">Nick9Gu</a> 2008-10-02 23:05 <a href="http://www.cppblog.com/NickGu/archive/2008/10/02/63169.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>{解题报告} NWERC2003 解题报告，PKU1631-1638</title><link>http://www.cppblog.com/NickGu/archive/2008/10/02/63144.html</link><dc:creator>Nick9Gu</dc:creator><author>Nick9Gu</author><pubDate>Wed, 01 Oct 2008 16:15:00 GMT</pubDate><guid>http://www.cppblog.com/NickGu/archive/2008/10/02/63144.html</guid><wfw:comment>http://www.cppblog.com/NickGu/comments/63144.html</wfw:comment><comments>http://www.cppblog.com/NickGu/archive/2008/10/02/63144.html#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://www.cppblog.com/NickGu/comments/commentRss/63144.html</wfw:commentRss><trackback:ping>http://www.cppblog.com/NickGu/services/trackbacks/63144.html</trackback:ping><description><![CDATA[还差一道题，先publish下这个beta版的，第一次用CTex写的，呵呵。<br>总的来说这套题还是比较简单的，数据也不强，不过也都要想想。<br><br><a href="http://www.cppblog.com/Files/NickGu/nwerc2003.pdf">http://www.cppblog.com/Files/NickGu/nwerc2003.pdf</a><br><br>题目列表：<br><br>
<table style="border-collapse: collapse;" width="980" background="images/table_back.jpg" border="1" bordercolor="#ffffff" cellpadding="0" cellspacing="0">
    <tbody>
        <tr>
            <td>1631</td>
            <td><a href="http://acm.pku.edu.cn/JudgeOnline/problem?id=1631">Bridging signals</a></td>
            <td align="center"><a href="http://acm.pku.edu.cn/JudgeOnline/problemstatus?problem_id=1631" target="_blank">824</a></td>
            <td>Northwestern Europe 2003</td>
        </tr>
        <tr>
            <td>1632</td>
            <td><a href="http://acm.pku.edu.cn/JudgeOnline/problem?id=1632">Vase collection</a></td>
            <td align="center"><a href="http://acm.pku.edu.cn/JudgeOnline/problemstatus?problem_id=1632" target="_blank">234</a></td>
            <td>Northwestern Europe 2003</td>
        </tr>
        <tr>
            <td>1633</td>
            <td><a href="http://acm.pku.edu.cn/JudgeOnline/problem?id=1633">Gladiators</a></td>
            <td align="center"><a href="http://acm.pku.edu.cn/JudgeOnline/problemstatus?problem_id=1633" target="_blank">101</a></td>
            <td>Northwestern Europe 2003</td>
        </tr>
        <tr>
            <td>1634</td>
            <td><a href="http://acm.pku.edu.cn/JudgeOnline/problem?id=1634">Who's the boss?</a></td>
            <td align="center"><a href="http://acm.pku.edu.cn/JudgeOnline/problemstatus?problem_id=1634" target="_blank">222</a></td>
            <td>Northwestern Europe 2003</td>
        </tr>
        <tr>
            <td>1635</td>
            <td><a href="http://acm.pku.edu.cn/JudgeOnline/problem?id=1635">Subway tree systems</a></td>
            <td align="center"><a href="http://acm.pku.edu.cn/JudgeOnline/problemstatus?problem_id=1635" target="_blank">426</a></td>
            <td>Northwestern Europe 2003</td>
        </tr>
        <tr>
            <td>1636</td>
            <td><a href="http://acm.pku.edu.cn/JudgeOnline/problem?id=1636">Prison rearrangement</a></td>
            <td align="center"><a href="http://acm.pku.edu.cn/JudgeOnline/problemstatus?problem_id=1636" target="_blank">166</a></td>
            <td>Northwestern Europe 2003</td>
        </tr>
        <tr>
            <td>1637</td>
            <td><a href="http://acm.pku.edu.cn/JudgeOnline/problem?id=1637">Sightseeing tour</a></td>
            <td align="center"><a href="http://acm.pku.edu.cn/JudgeOnline/problemstatus?problem_id=1637" target="_blank">287</a></td>
            <td>Northwestern Europe 2003</td>
        </tr>
        <tr>
            <td>1638</td>
            <td><a href="http://acm.pku.edu.cn/JudgeOnline/problem?id=1638">A number game</a></td>
            <td align="center"><a href="http://acm.pku.edu.cn/JudgeOnline/problemstatus?problem_id=1638" target="_blank">61</a></td>
            <td>Northwestern Europe 2003</td>
        </tr>
    </tbody>
</table>
<br><br>欢迎下载，如果谁会做最后一道麻烦给我留言。。有什么问题可以给我留言也可以电邮我。<br><br><br> <img src ="http://www.cppblog.com/NickGu/aggbug/63144.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/NickGu/" target="_blank">Nick9Gu</a> 2008-10-02 00:15 <a href="http://www.cppblog.com/NickGu/archive/2008/10/02/63144.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>