﻿<?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++博客-MadBrain.Lab</title><link>http://www.cppblog.com/superygw/</link><description>Mad Brian , a Super Weak Rookie</description><language>zh-cn</language><lastBuildDate>Wed, 15 Apr 2026 00:26:11 GMT</lastBuildDate><pubDate>Wed, 15 Apr 2026 00:26:11 GMT</pubDate><ttl>60</ttl><item><title>Ural1014</title><link>http://www.cppblog.com/superygw/archive/2012/11/18/195335.html</link><dc:creator>Cool Wings</dc:creator><author>Cool Wings</author><pubDate>Sun, 18 Nov 2012 15:43:00 GMT</pubDate><guid>http://www.cppblog.com/superygw/archive/2012/11/18/195335.html</guid><wfw:comment>http://www.cppblog.com/superygw/comments/195335.html</wfw:comment><comments>http://www.cppblog.com/superygw/archive/2012/11/18/195335.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cppblog.com/superygw/comments/commentRss/195335.html</wfw:commentRss><trackback:ping>http://www.cppblog.com/superygw/services/trackbacks/195335.html</trackback:ping><description><![CDATA[题是水题。本弱用了爆搜的方法。<br />首先把特殊情况（Q=0,1）先判掉，从9开始往下除，去除Q，除到2，如果最后Q没变1就输出-1。<br />由于水平问题，DEBUG一共用了1小时TAT。<br />第一次，是没判断n = 0 和 n = 1 的情况，于是悲剧 。<br />第二次，是想当然的把 n = 0 弄成了 0 ，又一次悲剧 。<br />第三次，是高估了long的范围，还是悲剧&#8230;&#8230;。<br />贴上代码&#8230;&#8230;（有点丑了）<br /><div style="background-color:#eeeeee;font-size:13px;border:1px solid #CCCCCC;padding-right: 5px;padding-bottom: 4px;padding-left: 4px;padding-top: 4px;width: 98%;word-break:break-all"><!--<br /><br />Code highlighting produced by Actipro CodeHighlighter (freeware)<br />http://www.CodeHighlighter.com/<br /><br />--><span style="color: #008080; ">&nbsp;1</span>&nbsp;#include&lt;iostream&gt;<br /><span style="color: #008080; ">&nbsp;2</span>&nbsp;<span style="color: #0000FF; ">#define</span>&nbsp;For(&nbsp;i,&nbsp;a,&nbsp;b&nbsp;)&nbsp;for&nbsp;(&nbsp;i&nbsp;=&nbsp;a;&nbsp;i&nbsp;&lt;=&nbsp;b;&nbsp;i++&nbsp;)<br /><span style="color: #008080; ">&nbsp;3</span>&nbsp;<span style="color: #0000FF; ">using</span>&nbsp;<span style="color: #0000FF; ">namespace</span>&nbsp;std&nbsp;;<br /><span style="color: #008080; ">&nbsp;4</span>&nbsp;typedef&nbsp;<span style="color: #0000FF; ">long</span>&nbsp;<span style="color: #0000FF; ">long</span>&nbsp;ll&nbsp;;<br /><span style="color: #008080; ">&nbsp;5</span>&nbsp;<br /><span style="color: #008080; ">&nbsp;6</span>&nbsp;<span style="color: #0000FF; ">bool</span>&nbsp;check(&nbsp;<span style="color: #0000FF; ">long</span>&nbsp;a&nbsp;)&nbsp;{<br /><span style="color: #008080; ">&nbsp;7</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ll&nbsp;i,&nbsp;tem&nbsp;=&nbsp;1&nbsp;;<br /><span style="color: #008080; ">&nbsp;8</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #0000FF; ">if</span>&nbsp;(&nbsp;a&nbsp;&gt;&nbsp;1&nbsp;&amp;&amp;&nbsp;a&nbsp;&lt;&nbsp;10&nbsp;)&nbsp;<span style="color: #0000FF; ">return</span>&nbsp;<span style="color: #0000FF; ">true</span>&nbsp;;<br /><span style="color: #008080; ">&nbsp;9</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #0000FF; ">if</span>&nbsp;(&nbsp;a&nbsp;&gt;&nbsp;10&nbsp;)&nbsp;<br /><span style="color: #008080; ">10</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br /><span style="color: #008080; ">11</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;For(&nbsp;i,&nbsp;2,&nbsp;9&nbsp;)&nbsp;<span style="color: #0000FF; ">if</span>&nbsp;(&nbsp;a%i&nbsp;==&nbsp;0&nbsp;)&nbsp;{&nbsp;tem&nbsp;=&nbsp;0;&nbsp;<span style="color: #0000FF; ">break</span>&nbsp;;&nbsp;}<br /><span style="color: #008080; ">12</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #0000FF; ">if</span>&nbsp;(&nbsp;tem&nbsp;)&nbsp;<span style="color: #0000FF; ">return</span>&nbsp;<span style="color: #0000FF; ">false</span>&nbsp;;<br /><span style="color: #008080; ">13</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br /><span style="color: #008080; ">14</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #0000FF; ">for</span>&nbsp;(&nbsp;i&nbsp;=&nbsp;9;&nbsp;i&nbsp;&gt;=&nbsp;2;&nbsp;i--&nbsp;)<br /><span style="color: #008080; ">15</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #0000FF; ">if</span>&nbsp;(&nbsp;a%i&nbsp;==&nbsp;0&nbsp;)&nbsp;<span style="color: #0000FF; ">return</span>&nbsp;check(&nbsp;a/i&nbsp;)&nbsp;;<br /><span style="color: #008080; ">16</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #0000FF; ">return</span>&nbsp;<span style="color: #0000FF; ">false</span>&nbsp;;<br /><span style="color: #008080; ">17</span>&nbsp;}<br /><span style="color: #008080; ">18</span>&nbsp;<br /><span style="color: #008080; ">19</span>&nbsp;ll&nbsp;solve(&nbsp;<span style="color: #0000FF; ">long</span>&nbsp;a&nbsp;)&nbsp;{<br /><span style="color: #008080; ">20</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ll&nbsp;i;<br /><span style="color: #008080; ">21</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #0000FF; ">if</span>&nbsp;(&nbsp;a&nbsp;&gt;&nbsp;1&nbsp;&amp;&amp;&nbsp;a&nbsp;&lt;&nbsp;10&nbsp;)&nbsp;<span style="color: #0000FF; ">return</span>&nbsp;a&nbsp;;<br /><span style="color: #008080; ">22</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #0000FF; ">for</span>&nbsp;(&nbsp;i&nbsp;=&nbsp;9;&nbsp;i&nbsp;&gt;=&nbsp;2;&nbsp;i--&nbsp;)<br /><span style="color: #008080; ">23</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #0000FF; ">if</span>&nbsp;(&nbsp;a%i&nbsp;==&nbsp;0&nbsp;)&nbsp;<span style="color: #0000FF; ">return</span>&nbsp;solve(&nbsp;a/i&nbsp;)&nbsp;*&nbsp;10&nbsp;+&nbsp;i&nbsp;;<br /><span style="color: #008080; ">24</span>&nbsp;}<br /><span style="color: #008080; ">25</span>&nbsp;<br /><span style="color: #008080; ">26</span>&nbsp;<span style="color: #0000FF; ">int</span>&nbsp;main()&nbsp;{<br /><span style="color: #008080; ">27</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ll&nbsp;&nbsp;num&nbsp;;<br /><span style="color: #008080; ">28</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;cin&nbsp;&gt;&gt;num&nbsp;;<br /><span style="color: #008080; ">29</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #0000FF; ">if</span>&nbsp;(&nbsp;num&nbsp;==&nbsp;1&nbsp;)&nbsp;{<br /><span style="color: #008080; ">30</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;cout&nbsp;&lt;&lt;&nbsp;num&nbsp;;<br /><span style="color: #008080; ">31</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #0000FF; ">return</span>&nbsp;0&nbsp;;<br /><span style="color: #008080; ">32</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br /><span style="color: #008080; ">33</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #0000FF; ">if</span>&nbsp;(&nbsp;num&nbsp;==&nbsp;0&nbsp;)&nbsp;{<br /><span style="color: #008080; ">34</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;cout&nbsp;&lt;&lt;10&nbsp;;<br /><span style="color: #008080; ">35</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #0000FF; ">return</span>&nbsp;0&nbsp;;<br /><span style="color: #008080; ">36</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br /><span style="color: #008080; ">37</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #0000FF; ">if</span>&nbsp;(&nbsp;!check(&nbsp;num&nbsp;)&nbsp;)&nbsp;{&nbsp;<br /><span style="color: #008080; ">38</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;cout&nbsp;&lt;&lt;-1;<br /><span style="color: #008080; ">39</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #0000FF; ">return</span>&nbsp;0&nbsp;;<br /><span style="color: #008080; ">40</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br /><span style="color: #008080; ">41</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;cout&nbsp;&lt;&lt;&nbsp;solve(&nbsp;num&nbsp;)&nbsp;;<br /><span style="color: #008080; ">42</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="color: #0000FF; ">return</span>&nbsp;0&nbsp;;<br /><span style="color: #008080; ">43</span>&nbsp;}</div><img src ="http://www.cppblog.com/superygw/aggbug/195335.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/superygw/" target="_blank">Cool Wings</a> 2012-11-18 23:43 <a href="http://www.cppblog.com/superygw/archive/2012/11/18/195335.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>【NOIP2011】选择客栈</title><link>http://www.cppblog.com/superygw/archive/2012/11/03/194209.html</link><dc:creator>Cool Wings</dc:creator><author>Cool Wings</author><pubDate>Sat, 03 Nov 2012 12:45:00 GMT</pubDate><guid>http://www.cppblog.com/superygw/archive/2012/11/03/194209.html</guid><wfw:comment>http://www.cppblog.com/superygw/comments/194209.html</wfw:comment><comments>http://www.cppblog.com/superygw/archive/2012/11/03/194209.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cppblog.com/superygw/comments/commentRss/194209.html</wfw:commentRss><trackback:ping>http://www.cppblog.com/superygw/services/trackbacks/194209.html</trackback:ping><description><![CDATA[<p>这个题据说是水题，有很多种算法<br />算法1 （朴素）：<br />1、顺序检索每一个客栈。<br />2、对于颜色为k的客栈i，搜索在此之前后颜色同为k的客栈j。<br />3、搜索到以后查找区间[i,j]内消费要求小于等于p的客栈，搜索到则总结果数sum+1。</p>
<div style="border-bottom: #cccccc 1px solid; border-left: #cccccc 1px solid; padding-bottom: 4px; background-color: #eeeeee; padding-left: 4px; width: 98%; padding-right: 5px; font-size: 13px; word-break: break-all; border-top: #cccccc 1px solid; border-right: #cccccc 1px solid; padding-top: 4px"><!--<br /><br />Code highlighting produced by Actipro CodeHighlighter (freeware)<br />http://www.CodeHighlighter.com/<br /><br />--><span style="color: #008080">&nbsp;1</span><img align="top" src="http://www.cppblog.com/images/OutliningIndicators/None.gif"  alt="" /><span style="color: #000000">#include</span><span style="color: #000000">&lt;</span><span style="color: #000000">iostream</span><span style="color: #000000">&gt;</span><span style="color: #000000"><br /></span><span style="color: #008080">&nbsp;2</span><span style="color: #000000"><img align="top" src="http://www.cppblog.com/images/OutliningIndicators/None.gif"  alt="" /></span><span style="color: #0000ff">using</span><span style="color: #000000">&nbsp;</span><span style="color: #0000ff">namespace</span><span style="color: #000000">&nbsp;std&nbsp;;<br /></span><span style="color: #008080">&nbsp;3</span><span style="color: #000000"><img align="top" src="http://www.cppblog.com/images/OutliningIndicators/None.gif"  alt="" /></span><span style="color: #0000ff">int</span><span style="color: #000000">&nbsp;main()<br /></span><span style="color: #008080">&nbsp;4</span><span style="color: #000000"><img id="Codehighlighter1_52_544_Open_Image" onclick="this.style.display='none'; Codehighlighter1_52_544_Open_Text.style.display='none'; Codehighlighter1_52_544_Closed_Image.style.display='inline'; Codehighlighter1_52_544_Closed_Text.style.display='inline';" align="top" src="http://www.cppblog.com/images/OutliningIndicators/ExpandedBlockStart.gif"><img style="display: none" id="Codehighlighter1_52_544_Closed_Image" onclick="this.style.display='none'; Codehighlighter1_52_544_Closed_Text.style.display='none'; Codehighlighter1_52_544_Open_Image.style.display='inline'; Codehighlighter1_52_544_Open_Text.style.display='inline';" align="top" src="http://www.cppblog.com/images/OutliningIndicators/ContractedBlock.gif"></span><span style="border-bottom: #808080 1px solid; border-left: #808080 1px solid; background-color: #ffffff; display: none; border-top: #808080 1px solid; border-right: #808080 1px solid" id="Codehighlighter1_52_544_Closed_Text"><img src="http://www.cppblog.com/Images/dot.gif"  alt="" /></span><span id="Codehighlighter1_52_544_Open_Text"><span style="color: #000000">{<br /></span><span style="color: #008080">&nbsp;5</span><span style="color: #000000"><img align="top" src="http://www.cppblog.com/images/OutliningIndicators/InBlock.gif"  alt="" />&nbsp;</span><span style="color: #0000ff">long</span><span style="color: #000000">&nbsp;n,&nbsp;k,&nbsp;p&nbsp;;<br /></span><span style="color: #008080">&nbsp;6</span><span style="color: #000000"><img align="top" src="http://www.cppblog.com/images/OutliningIndicators/InBlock.gif"  alt="" />&nbsp;</span><span style="color: #0000ff">long</span><span style="color: #000000">&nbsp;color[</span><span style="color: #000000">200000</span><span style="color: #000000">],&nbsp;cost[</span><span style="color: #000000">200000</span><span style="color: #000000">]&nbsp;;<br /></span><span style="color: #008080">&nbsp;7</span><span style="color: #000000"><img align="top" src="http://www.cppblog.com/images/OutliningIndicators/InBlock.gif"  alt="" />&nbsp;</span><span style="color: #008000">//</span><span style="color: #008000">freopen(&nbsp;"2.in",&nbsp;"r",&nbsp;stdin&nbsp;)&nbsp;;&nbsp;freopen(&nbsp;"2.out",&nbsp;"w",&nbsp;stdout&nbsp;)&nbsp;;</span><span style="color: #008000"><br /></span><span style="color: #008080">&nbsp;8</span><span style="color: #008000"><img align="top" src="http://www.cppblog.com/images/OutliningIndicators/InBlock.gif"  alt="" /></span><span style="color: #000000">&nbsp;cin&nbsp;</span><span style="color: #000000">&gt;&gt;</span><span style="color: #000000">n&nbsp;</span><span style="color: #000000">&gt;&gt;</span><span style="color: #000000">k&nbsp;</span><span style="color: #000000">&gt;&gt;</span><span style="color: #000000">&nbsp;p&nbsp;;<br /></span><span style="color: #008080">&nbsp;9</span><span style="color: #000000"><img align="top" src="http://www.cppblog.com/images/OutliningIndicators/InBlock.gif"  alt="" />&nbsp;</span><span style="color: #0000ff">for</span><span style="color: #000000">&nbsp;(&nbsp;</span><span style="color: #0000ff">long</span><span style="color: #000000">&nbsp;i&nbsp;</span><span style="color: #000000">=</span><span style="color: #000000">&nbsp;</span><span style="color: #000000">0</span><span style="color: #000000">;&nbsp;i&nbsp;</span><span style="color: #000000">&lt;</span><span style="color: #000000">&nbsp;n;&nbsp;i</span><span style="color: #000000">++</span><span style="color: #000000">&nbsp;)&nbsp;cin&nbsp;</span><span style="color: #000000">&gt;&gt;</span><span style="color: #000000">color[i]&nbsp;</span><span style="color: #000000">&gt;&gt;</span><span style="color: #000000">cost[i]&nbsp;;<br /></span><span style="color: #008080">10</span><span style="color: #000000"><img align="top" src="http://www.cppblog.com/images/OutliningIndicators/InBlock.gif"  alt="" />&nbsp;</span><span style="color: #0000ff">long</span><span style="color: #000000">&nbsp;ans&nbsp;</span><span style="color: #000000">=</span><span style="color: #000000">&nbsp;</span><span style="color: #000000">0</span><span style="color: #000000">&nbsp;;<br /></span><span style="color: #008080">11</span><span style="color: #000000"><img align="top" src="http://www.cppblog.com/images/OutliningIndicators/InBlock.gif"  alt="" />&nbsp;</span><span style="color: #0000ff">for</span><span style="color: #000000">&nbsp;(&nbsp;</span><span style="color: #0000ff">long</span><span style="color: #000000">&nbsp;i&nbsp;</span><span style="color: #000000">=</span><span style="color: #000000">&nbsp;</span><span style="color: #000000">0</span><span style="color: #000000">;&nbsp;i&nbsp;</span><span style="color: #000000">&lt;</span><span style="color: #000000">&nbsp;n</span><span style="color: #000000">-</span><span style="color: #000000">1</span><span style="color: #000000">;&nbsp;i</span><span style="color: #000000">++</span><span style="color: #000000">&nbsp;)<br /></span><span style="color: #008080">12</span><span style="color: #000000"><img align="top" src="http://www.cppblog.com/images/OutliningIndicators/InBlock.gif"  alt="" />&nbsp;&nbsp;</span><span style="color: #0000ff">for</span><span style="color: #000000">&nbsp;(&nbsp;</span><span style="color: #0000ff">long</span><span style="color: #000000">&nbsp;j&nbsp;</span><span style="color: #000000">=</span><span style="color: #000000">&nbsp;i</span><span style="color: #000000">+</span><span style="color: #000000">1</span><span style="color: #000000">;&nbsp;j&nbsp;</span><span style="color: #000000">&lt;</span><span style="color: #000000">&nbsp;n&nbsp;;&nbsp;j</span><span style="color: #000000">++</span><span style="color: #000000">&nbsp;)<br /></span><span style="color: #008080">13</span><span style="color: #000000"><img align="top" src="http://www.cppblog.com/images/OutliningIndicators/InBlock.gif"  alt="" />&nbsp;&nbsp;&nbsp;</span><span style="color: #0000ff">if</span><span style="color: #000000">&nbsp;(&nbsp;color[i]</span><span style="color: #000000">==</span><span style="color: #000000">&nbsp;color[j]&nbsp;)&nbsp;<br /></span><span style="color: #008080">14</span><span style="color: #000000"><img id="Codehighlighter1_374_515_Open_Image" onclick="this.style.display='none'; Codehighlighter1_374_515_Open_Text.style.display='none'; Codehighlighter1_374_515_Closed_Image.style.display='inline'; Codehighlighter1_374_515_Closed_Text.style.display='inline';" align="top" src="http://www.cppblog.com/images/OutliningIndicators/ExpandedSubBlockStart.gif"><img style="display: none" id="Codehighlighter1_374_515_Closed_Image" onclick="this.style.display='none'; Codehighlighter1_374_515_Closed_Text.style.display='none'; Codehighlighter1_374_515_Open_Image.style.display='inline'; Codehighlighter1_374_515_Open_Text.style.display='inline';" align="top" src="http://www.cppblog.com/images/OutliningIndicators/ContractedSubBlock.gif">&nbsp;&nbsp;&nbsp;</span><span style="border-bottom: #808080 1px solid; border-left: #808080 1px solid; background-color: #ffffff; display: none; border-top: #808080 1px solid; border-right: #808080 1px solid" id="Codehighlighter1_374_515_Closed_Text"><img src="http://www.cppblog.com/Images/dot.gif"  alt="" /></span><span id="Codehighlighter1_374_515_Open_Text"><span style="color: #000000">{<br /></span><span style="color: #008080">15</span><span style="color: #000000"><img align="top" src="http://www.cppblog.com/images/OutliningIndicators/InBlock.gif"  alt="" />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000ff">long</span><span style="color: #000000">&nbsp;temp&nbsp;</span><span style="color: #000000">=</span><span style="color: #000000">&nbsp;</span><span style="color: #000000">0</span><span style="color: #000000">&nbsp;;<br /></span><span style="color: #008080">16</span><span style="color: #000000"><img align="top" src="http://www.cppblog.com/images/OutliningIndicators/InBlock.gif"  alt="" />&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000ff">for</span><span style="color: #000000">&nbsp;(&nbsp;</span><span style="color: #0000ff">long</span><span style="color: #000000">&nbsp;cafe&nbsp;</span><span style="color: #000000">=</span><span style="color: #000000">&nbsp;i;&nbsp;cafe&nbsp;</span><span style="color: #000000">&lt;=</span><span style="color: #000000">&nbsp;j&nbsp;</span><span style="color: #000000">&amp;&amp;</span><span style="color: #000000">&nbsp;temp&nbsp;</span><span style="color: #000000">==</span><span style="color: #000000">&nbsp;</span><span style="color: #000000">0</span><span style="color: #000000">&nbsp;;&nbsp;cafe</span><span style="color: #000000">++</span><span style="color: #000000">&nbsp;)<br /></span><span style="color: #008080">17</span><span style="color: #000000"><img align="top" src="http://www.cppblog.com/images/OutliningIndicators/InBlock.gif"  alt="" />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000ff">if</span><span style="color: #000000">&nbsp;(&nbsp;cost[cafe]&nbsp;</span><span style="color: #000000">&lt;=</span><span style="color: #000000">&nbsp;p&nbsp;)&nbsp;temp&nbsp;</span><span style="color: #000000">=</span><span style="color: #000000">&nbsp;</span><span style="color: #000000">1</span><span style="color: #000000">&nbsp;;<br /></span><span style="color: #008080">18</span><span style="color: #000000"><img align="top" src="http://www.cppblog.com/images/OutliningIndicators/InBlock.gif"  alt="" />&nbsp;&nbsp;&nbsp;&nbsp;ans&nbsp;</span><span style="color: #000000">+=</span><span style="color: #000000">&nbsp;temp&nbsp;;<br /></span><span style="color: #008080">19</span><span style="color: #000000"><img align="top" src="http://www.cppblog.com/images/OutliningIndicators/ExpandedSubBlockEnd.gif"  alt="" />&nbsp;&nbsp;&nbsp;}</span></span><span style="color: #000000"><br /></span><span style="color: #008080">20</span><span style="color: #000000"><img align="top" src="http://www.cppblog.com/images/OutliningIndicators/InBlock.gif"  alt="" />&nbsp;cout&nbsp;</span><span style="color: #000000">&lt;&lt;</span><span style="color: #000000">&nbsp;ans&nbsp;;<br /></span><span style="color: #008080">21</span><span style="color: #000000"><img align="top" src="http://www.cppblog.com/images/OutliningIndicators/InBlock.gif"  alt="" />&nbsp;</span><span style="color: #0000ff">return</span><span style="color: #000000">&nbsp;</span><span style="color: #000000">0</span><span style="color: #000000">&nbsp;;<br /></span><span style="color: #008080">22</span><span style="color: #000000"><img align="top" src="http://www.cppblog.com/images/OutliningIndicators/ExpandedBlockEnd.gif"  alt="" />}</span></span></div>
<p><br /><br />预期得分40~60</p>
<p>算法二：<br />当然是DP<br />动态规划，设f[i,j]为前i个客栈中色调为j的可行方案，s[i,j]为前i个客栈中可以与之后色调为j的客栈搭配的客栈数，即有s[i,j]个客栈的色调为j，且该客栈与第i个客栈之间有符合条件的咖啡店，v[i]为第i个客栈的最低消费，c[i]为第i个客栈的色调a[i,j]为前i个客栈中色调为j的客栈的数目，则有<br />s[i,j] = ( v[i] &lt;= p ) ? a[i,j] : s[i-1,j]&nbsp; <br />f[j] = ( c != j ) ? f[j] : f[j]+s[j]</p>
<p>代码：</p>
<div style="border-bottom: #cccccc 1px solid; border-left: #cccccc 1px solid; padding-bottom: 4px; background-color: #eeeeee; padding-left: 4px; width: 98%; padding-right: 5px; font-size: 13px; word-break: break-all; border-top: #cccccc 1px solid; border-right: #cccccc 1px solid; padding-top: 4px"><!--<br /><br />Code highlighting produced by Actipro CodeHighlighter (freeware)<br />http://www.CodeHighlighter.com/<br /><br />--><span style="color: #008080">&nbsp;1</span><img align="top" src="http://www.cppblog.com/images/OutliningIndicators/None.gif"  alt="" /><span style="color: #000000">#include&nbsp;</span><span style="color: #000000">&lt;</span><span style="color: #000000">cstdio</span><span style="color: #000000">&gt;</span><span style="color: #000000"><br /></span><span style="color: #008080">&nbsp;2</span><span style="color: #000000"><img align="top" src="http://www.cppblog.com/images/OutliningIndicators/None.gif"  alt="" /></span><span style="color: #0000ff">using</span><span style="color: #000000">&nbsp;</span><span style="color: #0000ff">namespace</span><span style="color: #000000">&nbsp;std&nbsp;;<br /></span><span style="color: #008080">&nbsp;3</span><span style="color: #000000"><img align="top" src="http://www.cppblog.com/images/OutliningIndicators/None.gif"  alt="" /></span><span style="color: #0000ff">int</span><span style="color: #000000">&nbsp;main()<br /></span><span style="color: #008080">&nbsp;4</span><span style="color: #000000"><img id="Codehighlighter1_51_560_Open_Image" onclick="this.style.display='none'; Codehighlighter1_51_560_Open_Text.style.display='none'; Codehighlighter1_51_560_Closed_Image.style.display='inline'; Codehighlighter1_51_560_Closed_Text.style.display='inline';" align="top" src="http://www.cppblog.com/images/OutliningIndicators/ExpandedBlockStart.gif"><img style="display: none" id="Codehighlighter1_51_560_Closed_Image" onclick="this.style.display='none'; Codehighlighter1_51_560_Closed_Text.style.display='none'; Codehighlighter1_51_560_Open_Image.style.display='inline'; Codehighlighter1_51_560_Open_Text.style.display='inline';" align="top" src="http://www.cppblog.com/images/OutliningIndicators/ContractedBlock.gif"></span><span style="border-bottom: #808080 1px solid; border-left: #808080 1px solid; background-color: #ffffff; display: none; border-top: #808080 1px solid; border-right: #808080 1px solid" id="Codehighlighter1_51_560_Closed_Text"><img src="http://www.cppblog.com/Images/dot.gif"  alt="" /></span><span id="Codehighlighter1_51_560_Open_Text"><span style="color: #000000">{<br /></span><span style="color: #008080">&nbsp;5</span><span style="color: #000000"><img align="top" src="http://www.cppblog.com/images/OutliningIndicators/InBlock.gif"  alt="" />&nbsp;freopen(&nbsp;</span><span style="color: #000000">"</span><span style="color: #000000">2.in</span><span style="color: #000000">"</span><span style="color: #000000">,&nbsp;</span><span style="color: #000000">"</span><span style="color: #000000">r</span><span style="color: #000000">"</span><span style="color: #000000">,&nbsp;stdin&nbsp;)&nbsp;;<br /></span><span style="color: #008080">&nbsp;6</span><span style="color: #000000"><img align="top" src="http://www.cppblog.com/images/OutliningIndicators/InBlock.gif"  alt="" />&nbsp;freopen(&nbsp;</span><span style="color: #000000">"</span><span style="color: #000000">2.out</span><span style="color: #000000">"</span><span style="color: #000000">,&nbsp;</span><span style="color: #000000">"</span><span style="color: #000000">w</span><span style="color: #000000">"</span><span style="color: #000000">,&nbsp;stdout&nbsp;)&nbsp;;<br /></span><span style="color: #008080">&nbsp;7</span><span style="color: #000000"><img align="top" src="http://www.cppblog.com/images/OutliningIndicators/InBlock.gif"  alt="" />&nbsp;</span><span style="color: #0000ff">long</span><span style="color: #000000">&nbsp;n,&nbsp;m,&nbsp;p,&nbsp;i,&nbsp;j,&nbsp;ans,&nbsp;v&nbsp;</span><span style="color: #000000">=</span><span style="color: #000000">&nbsp;</span><span style="color: #000000">0</span><span style="color: #000000">,&nbsp;c&nbsp;</span><span style="color: #000000">=</span><span style="color: #000000">&nbsp;</span><span style="color: #000000">0</span><span style="color: #000000">&nbsp;;<br /></span><span style="color: #008080">&nbsp;8</span><span style="color: #000000"><img id="Codehighlighter1_176_178_Open_Image" onclick="this.style.display='none'; Codehighlighter1_176_178_Open_Text.style.display='none'; Codehighlighter1_176_178_Closed_Image.style.display='inline'; Codehighlighter1_176_178_Closed_Text.style.display='inline';" align="top" src="http://www.cppblog.com/images/OutliningIndicators/ExpandedSubBlockStart.gif"><img style="display: none" id="Codehighlighter1_176_178_Closed_Image" onclick="this.style.display='none'; Codehighlighter1_176_178_Closed_Text.style.display='none'; Codehighlighter1_176_178_Open_Image.style.display='inline'; Codehighlighter1_176_178_Open_Text.style.display='inline';" align="top" src="http://www.cppblog.com/images/OutliningIndicators/ContractedSubBlock.gif">&nbsp;</span><span style="color: #0000ff">long</span><span style="color: #000000">&nbsp;a[</span><span style="color: #000000">50</span><span style="color: #000000">]&nbsp;</span><span style="color: #000000">=</span><span style="color: #000000">&nbsp;</span><span style="border-bottom: #808080 1px solid; border-left: #808080 1px solid; background-color: #ffffff; display: none; border-top: #808080 1px solid; border-right: #808080 1px solid" id="Codehighlighter1_176_178_Closed_Text"><img src="http://www.cppblog.com/Images/dot.gif"  alt="" /></span><span id="Codehighlighter1_176_178_Open_Text"><span style="color: #000000">{</span><span style="color: #000000">0</span><span style="color: #000000">}</span></span><span style="color: #000000">,&nbsp;s[</span><span style="color: #000000">50</span><span style="color: #000000">]&nbsp;</span><span style="color: #000000">=</span><span style="color: #000000">&nbsp;</span><span style="border-bottom: #808080 1px solid; border-left: #808080 1px solid; background-color: #ffffff; display: none; border-top: #808080 1px solid; border-right: #808080 1px solid" id="Codehighlighter1_189_191_Closed_Text"><img src="http://www.cppblog.com/Images/dot.gif"  alt="" /></span><span id="Codehighlighter1_189_191_Open_Text"><span style="color: #000000">{</span><span style="color: #000000">0</span><span style="color: #000000">}</span></span><span style="color: #000000">,&nbsp;f[</span><span style="color: #000000">50</span><span style="color: #000000">]&nbsp;</span><span style="color: #000000">=</span><span style="color: #000000">&nbsp;</span><span style="border-bottom: #808080 1px solid; border-left: #808080 1px solid; background-color: #ffffff; display: none; border-top: #808080 1px solid; border-right: #808080 1px solid" id="Codehighlighter1_202_204_Closed_Text"><img src="http://www.cppblog.com/Images/dot.gif"  alt="" /></span><span id="Codehighlighter1_202_204_Open_Text"><span style="color: #000000">{</span><span style="color: #000000">0</span><span style="color: #000000">}</span></span><span style="color: #000000">&nbsp;;<br /></span><span style="color: #008080">&nbsp;9</span><span style="color: #000000"><img align="top" src="http://www.cppblog.com/images/OutliningIndicators/InBlock.gif"  alt="" />&nbsp;scanf(&nbsp;</span><span style="color: #000000">"</span><span style="color: #000000">%ld%ld%ld</span><span style="color: #000000">"</span><span style="color: #000000">,&nbsp;</span><span style="color: #000000">&amp;</span><span style="color: #000000">n,&nbsp;</span><span style="color: #000000">&amp;</span><span style="color: #000000">m,&nbsp;</span><span style="color: #000000">&amp;</span><span style="color: #000000">p&nbsp;)&nbsp;;<br /></span><span style="color: #008080">10</span><span style="color: #000000"><img align="top" src="http://www.cppblog.com/images/OutliningIndicators/InBlock.gif"  alt="" />&nbsp;</span><span style="color: #0000ff">for</span><span style="color: #000000">&nbsp;(&nbsp;i&nbsp;</span><span style="color: #000000">=</span><span style="color: #000000">&nbsp;</span><span style="color: #000000">1</span><span style="color: #000000">;&nbsp;i&nbsp;</span><span style="color: #000000">&lt;=</span><span style="color: #000000">n;&nbsp;i</span><span style="color: #000000">++</span><span style="color: #000000">&nbsp;)<br /></span><span style="color: #008080">11</span><span style="color: #000000"><img id="Codehighlighter1_272_471_Open_Image" onclick="this.style.display='none'; Codehighlighter1_272_471_Open_Text.style.display='none'; Codehighlighter1_272_471_Closed_Image.style.display='inline'; Codehighlighter1_272_471_Closed_Text.style.display='inline';" align="top" src="http://www.cppblog.com/images/OutliningIndicators/ExpandedSubBlockStart.gif"><img style="display: none" id="Codehighlighter1_272_471_Closed_Image" onclick="this.style.display='none'; Codehighlighter1_272_471_Closed_Text.style.display='none'; Codehighlighter1_272_471_Open_Image.style.display='inline'; Codehighlighter1_272_471_Open_Text.style.display='inline';" align="top" src="http://www.cppblog.com/images/OutliningIndicators/ContractedSubBlock.gif">&nbsp;</span><span style="border-bottom: #808080 1px solid; border-left: #808080 1px solid; background-color: #ffffff; display: none; border-top: #808080 1px solid; border-right: #808080 1px solid" id="Codehighlighter1_272_471_Closed_Text"><img src="http://www.cppblog.com/Images/dot.gif"  alt="" /></span><span id="Codehighlighter1_272_471_Open_Text"><span style="color: #000000">{<br /></span><span style="color: #008080">12</span><span style="color: #000000"><img align="top" src="http://www.cppblog.com/images/OutliningIndicators/InBlock.gif"  alt="" />&nbsp;&nbsp;scanf(&nbsp;</span><span style="color: #000000">"</span><span style="color: #000000">%ld%ld</span><span style="color: #000000">"</span><span style="color: #000000">,&nbsp;</span><span style="color: #000000">&amp;</span><span style="color: #000000">c,&nbsp;</span><span style="color: #000000">&amp;</span><span style="color: #000000">v&nbsp;)&nbsp;;<br /></span><span style="color: #008080">13</span><span style="color: #000000"><img align="top" src="http://www.cppblog.com/images/OutliningIndicators/InBlock.gif"  alt="" />&nbsp;&nbsp;</span><span style="color: #0000ff">if</span><span style="color: #000000">&nbsp;(&nbsp;v&nbsp;</span><span style="color: #000000">&lt;=</span><span style="color: #000000">&nbsp;p&nbsp;)&nbsp;<br /></span><span style="color: #008080">14</span><span style="color: #000000"><img align="top" src="http://www.cppblog.com/images/OutliningIndicators/InBlock.gif"  alt="" />&nbsp;&nbsp;&nbsp;</span><span style="color: #0000ff">for</span><span style="color: #000000">&nbsp;(&nbsp;j&nbsp;</span><span style="color: #000000">=</span><span style="color: #000000">&nbsp;</span><span style="color: #000000">0</span><span style="color: #000000">;&nbsp;j&nbsp;</span><span style="color: #000000">&lt;</span><span style="color: #000000">&nbsp;m;&nbsp;j</span><span style="color: #000000">++</span><span style="color: #000000">&nbsp;)&nbsp;s[j]&nbsp;</span><span style="color: #000000">=</span><span style="color: #000000">&nbsp;a[j]&nbsp;;<br /></span><span style="color: #008080">15</span><span style="color: #000000"><img align="top" src="http://www.cppblog.com/images/OutliningIndicators/InBlock.gif"  alt="" />&nbsp;&nbsp;</span><span style="color: #0000ff">for</span><span style="color: #000000">&nbsp;(&nbsp;j&nbsp;</span><span style="color: #000000">=</span><span style="color: #000000">&nbsp;</span><span style="color: #000000">0</span><span style="color: #000000">;&nbsp;j&nbsp;</span><span style="color: #000000">&lt;</span><span style="color: #000000">&nbsp;m;&nbsp;j</span><span style="color: #000000">++</span><span style="color: #000000">&nbsp;)<br /></span><span style="color: #008080">16</span><span style="color: #000000"><img align="top" src="http://www.cppblog.com/images/OutliningIndicators/InBlock.gif"  alt="" />&nbsp;&nbsp;&nbsp;f[j]&nbsp;</span><span style="color: #000000">=</span><span style="color: #000000">&nbsp;(&nbsp;c&nbsp;</span><span style="color: #000000">!=</span><span style="color: #000000">&nbsp;j&nbsp;)&nbsp;</span><span style="color: #000000">?</span><span style="color: #000000">&nbsp;f[j]&nbsp;:&nbsp;f[j]</span><span style="color: #000000">+</span><span style="color: #000000">s[j]&nbsp;;<br /></span><span style="color: #008080">17</span><span style="color: #000000"><img align="top" src="http://www.cppblog.com/images/OutliningIndicators/InBlock.gif"  alt="" />&nbsp;&nbsp;a[c]</span><span style="color: #000000">++</span><span style="color: #000000">&nbsp;;<br /></span><span style="color: #008080">18</span><span style="color: #000000"><img align="top" src="http://www.cppblog.com/images/OutliningIndicators/InBlock.gif"  alt="" />&nbsp;&nbsp;</span><span style="color: #0000ff">if</span><span style="color: #000000">&nbsp;(&nbsp;v&nbsp;</span><span style="color: #000000">&lt;=</span><span style="color: #000000">&nbsp;p&nbsp;)&nbsp;s[c]</span><span style="color: #000000">++</span><span style="color: #000000">&nbsp;;<br /></span><span style="color: #008080">19</span><span style="color: #000000"><img align="top" src="http://www.cppblog.com/images/OutliningIndicators/ExpandedSubBlockEnd.gif"  alt="" />&nbsp;}</span></span><span style="color: #000000"><br /></span><span style="color: #008080">20</span><span style="color: #000000"><img align="top" src="http://www.cppblog.com/images/OutliningIndicators/InBlock.gif"  alt="" />&nbsp;ans&nbsp;</span><span style="color: #000000">=</span><span style="color: #000000">&nbsp;</span><span style="color: #000000">0</span><span style="color: #000000">&nbsp;;<br /></span><span style="color: #008080">21</span><span style="color: #000000"><img align="top" src="http://www.cppblog.com/images/OutliningIndicators/InBlock.gif"  alt="" />&nbsp;</span><span style="color: #0000ff">for</span><span style="color: #000000">&nbsp;(&nbsp;j&nbsp;</span><span style="color: #000000">=</span><span style="color: #000000">&nbsp;</span><span style="color: #000000">0</span><span style="color: #000000">;&nbsp;j&nbsp;</span><span style="color: #000000">&lt;</span><span style="color: #000000">&nbsp;m;&nbsp;j</span><span style="color: #000000">++</span><span style="color: #000000">&nbsp;)&nbsp;ans</span><span style="color: #000000">+=</span><span style="color: #000000">&nbsp;f[j]&nbsp;;<br /></span><span style="color: #008080">22</span><span style="color: #000000"><img align="top" src="http://www.cppblog.com/images/OutliningIndicators/InBlock.gif"  alt="" />&nbsp;printf(&nbsp;</span><span style="color: #000000">"</span><span style="color: #000000">%ld</span><span style="color: #000000">"</span><span style="color: #000000">,&nbsp;ans&nbsp;)&nbsp;;<br /></span><span style="color: #008080">23</span><span style="color: #000000"><img align="top" src="http://www.cppblog.com/images/OutliningIndicators/InBlock.gif"  alt="" />&nbsp;</span><span style="color: #0000ff">return</span><span style="color: #000000">&nbsp;</span><span style="color: #000000">0</span><span style="color: #000000">&nbsp;;<br /></span><span style="color: #008080">24</span><span style="color: #000000"><img align="top" src="http://www.cppblog.com/images/OutliningIndicators/ExpandedBlockEnd.gif"  alt="" />}</span></span></div>
<p><br />&nbsp;</p><img src ="http://www.cppblog.com/superygw/aggbug/194209.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/superygw/" target="_blank">Cool Wings</a> 2012-11-03 20:45 <a href="http://www.cppblog.com/superygw/archive/2012/11/03/194209.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>NOI 2012团体对抗赛</title><link>http://www.cppblog.com/superygw/archive/2012/07/16/183773.html</link><dc:creator>Cool Wings</dc:creator><author>Cool Wings</author><pubDate>Mon, 16 Jul 2012 10:16:00 GMT</pubDate><guid>http://www.cppblog.com/superygw/archive/2012/07/16/183773.html</guid><wfw:comment>http://www.cppblog.com/superygw/comments/183773.html</wfw:comment><comments>http://www.cppblog.com/superygw/archive/2012/07/16/183773.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.cppblog.com/superygw/comments/commentRss/183773.html</wfw:commentRss><trackback:ping>http://www.cppblog.com/superygw/services/trackbacks/183773.html</trackback:ping><description><![CDATA[<h2></h2>
<h2><span style="font-family: Arial; ">直播中&#8230;&#8230;</span></h2>
<span style="font-family: Arial; font-size: 12pt; font-weight: normal; ">===========================</span><span style="font-family: Arial; font-size: 10pt; font-weight: normal; ">我是华丽丽的分割线</span><span style="font-family: Arial; font-size: 12pt; font-weight: normal; ">======================</span><span style="font-family: Arial; "><br />
</span>
<p><span style="font-family: Arial; font-size: 12pt; ">&nbsp;&nbsp;<span style="font-weight: normal; font-size: 12pt; ">7月14日：<br />
</span></span><span style="font-family: Arial; "><span style="font-weight: normal; font-size: 12pt; ">&nbsp; &nbsp; 昨天才看到了题目，今天思考了一天，没思路，之后和队友交流了一下，仍然囧&#8230;&#8230;</span></span></p>
<span style="font-family: Arial; font-size: 12pt; font-weight: normal; ">===========================</span><span style="font-family: Arial; font-size: 12pt; font-weight: normal; ">=</span><span style="font-family: Arial; font-size: 12pt; font-weight: normal; ">==================================<br />
</span><span style="font-family: Arial; font-size: 12pt; font-weight: normal; ">&nbsp; 7月15日：<br />
&nbsp; &nbsp; 今天，和队友讨论了分工的问题，却发现不好分，于是打算一人写一个（囧&#8230;&#8230;）<br />
</span><span style="font-family: Arial; font-size: 12pt; font-weight: normal; "><br />
============================</span><span style="font-family: Arial; font-size: 12pt; font-weight: normal; ">=</span><span style="font-family: Arial; font-size: 12pt; font-weight: normal; ">==================================<br />
</span>
<p><span style="font-family: Arial; font-size: 12pt; font-weight: normal; ">&nbsp; 7月16日：</span></p>
<p>
</p><p><span style="font-weight: normal;"><span style="font-size: 12pt; "><font face="Courier">&nbsp; &nbsp;&nbsp;</font></span><span style="font-family: Arial; font-size: 12pt; ">尼玛，时间不多了，得开始编程了&#8230;&#8230;<br />
</span><span style="font-family: Arial; font-size: 12pt; ">&nbsp; &nbsp; &nbsp; &nbsp; 坑爹啊 ， 完全没思路啊，</span><span style="font-family: Arial; font-size: 12pt; ">囧rz</span><span style="font-family: Arial; font-size: 12pt; "><span style="font-family: Courier; font-size: 12pt; ">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;</span></span></span></p>
<p><span style="font-weight: normal;"><span style="font-family: Arial; font-size: 12pt; "><span style="font-family: Courier; font-size: 12pt; "></span></span><span style="font-family: Arial; font-size: 12pt; ">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;队友 oibrusher 神犇已经开始debug了，跪烂烂烂烂烂烂烂烂</span><span style="font-family: Arial; font-size: 12pt; ">烂烂烂烂烂烂烂烂<br />
<br />
</span></span><span style="font-family: Arial; font-size: 12pt; font-weight: normal; ">============================</span><span style="font-family: Arial; font-size: 12pt; font-weight: normal; ">=</span><span style="font-family: Arial; font-size: 12pt; font-weight: normal; ">==================================</span></p>
<span style="font-weight: normal; ">&nbsp;</span><span style="font-weight: normal; font-size: 12pt; ">7月17日：&nbsp;
</span><span style="font-weight: normal; "></span><span style="font-weight: normal; font-size: 24pt; ">&nbsp;</span><span style="font-weight: normal; ">&nbsp; <br />&nbsp;<br />&nbsp; &nbsp;&nbsp; oibrusher 神犇在今晚的练习赛中竟然排名第12！！！ &nbsp;<br /></span><span style="font-weight: normal; font-size: 14pt; ">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;<br /></span><span style="font-size: 18pt; "><strong>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;亚历山大</strong></span><span style="font-weight: normal; font-size: 14pt; "> &nbsp; &nbsp; </span><span style="font-weight: normal;"><br /><div><span style="font-family: Arial; font-size: 12pt; font-weight: normal; ">============================</span><span style="font-family: Arial; font-size: 12pt; font-weight: normal; ">=</span><span style="font-family: Arial; font-size: 12pt; font-weight: normal; ">==================================</span></div>&nbsp;7月22日：<br />&nbsp;&nbsp;&nbsp;&nbsp; 彻底完爆<br /><div><span style="font-family: Arial; font-size: 12pt; font-weight: normal; ">============================</span><span style="font-family: Arial; font-size: 12pt; font-weight: normal; ">=</span><span style="font-family: Arial; font-size: 12pt; font-weight: normal; ">==================================</span></div>&nbsp;8月1日晚：<br />&nbsp;&nbsp;&nbsp; 练习赛，用了oibrusher的程序，还是被虐了，囧<br /><div><span style="font-family: Arial; font-size: 12pt; font-weight: normal; ">============================</span><span style="font-family: Arial; font-size: 12pt; font-weight: normal; ">=</span><span style="font-family: Arial; font-size: 12pt; font-weight: normal; ">==================================</span></div>&nbsp;8月2日：<br />&nbsp;&nbsp;&nbsp; 先被刷到了丙组，后来RP爆发，虐了一次场，进入乙组，但后来又被刷到了丙组，直接<br />淘汰，囧。<br />&nbsp;&nbsp;&nbsp; 浙江也悲剧了，和甘肃同时被淘汰；<br />&nbsp;&nbsp;&nbsp; 上海队，因ZX大神用随机化在个人赛中虐场，耗费大量RP，导致上海每次虐场后突然违<br />规，被直接淘汰；<br />&nbsp;&nbsp;&nbsp; 邻省宁夏小宇宙爆发，虐爆全场，夺得亚军，表示跪烂；<br />&nbsp;&nbsp;&nbsp; 范神再次虐场，ORZ ；<br /><div><span style="font-family: Arial; font-size: 12pt; font-weight: normal; ">============================</span><span style="font-family: Arial; font-size: 12pt; font-weight: normal; ">=</span><span style="font-family: Arial; font-size: 12pt; font-weight: normal; ">==================================</span></div>&nbsp; 完了<br /><br /></span><img src ="http://www.cppblog.com/superygw/aggbug/183773.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.cppblog.com/superygw/" target="_blank">Cool Wings</a> 2012-07-16 18:16 <a href="http://www.cppblog.com/superygw/archive/2012/07/16/183773.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>