﻿<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>

<channel>
	<title>Coding MRain , Beta!</title>
	<atom:link href="http://blog.codebeta.org/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.codebeta.org</link>
	<description>我还是那个MRain吗?</description>
	<pubDate>Fri, 21 Nov 2008 05:23:46 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
	<language>en</language>
			<item>
		<title>NOIP2008 提高组复赛试题数据及个人题解</title>
		<link>http://blog.codebeta.org/archives/post-123.html</link>
		<comments>http://blog.codebeta.org/archives/post-123.html#comments</comments>
		<pubDate>Tue, 18 Nov 2008 09:03:21 +0000</pubDate>
		<dc:creator>MRain</dc:creator>
		
		<category><![CDATA[OI]]></category>

		<category><![CDATA[NOIP]]></category>

		<guid isPermaLink="false">http://blog.codebeta.org/?p=123</guid>
		<description><![CDATA[第一题 word
题意简述:给出一个单词,统计其中出现最多的字母出现的次数maxn,以及出现最少的字母的次数minn,如果maxn-minn是质数的话则作为一个Lucky Word..否则即为No Answer.
类型: 模拟水题....
代码:
... ]]></description>
			<content:encoded><![CDATA[<p>第一题 word</p>
<p>题意简述:给出一个单词,统计其中出现最多的字母出现的次数maxn,以及出现最少的字母的次数minn,如果maxn-minn是质数的话则作为一个Lucky Word..否则即为No Answer.</p>
<p>类型: 模拟水题....</p>
<p>代码:</p>

<div class="wp_syntax"><div class="code"><pre class="cpp cpp" style="font-family:monospace;"><span style="color: #339900;">#include &lt;stdio.h&gt;</span>
<span style="color: #339900;">#include &lt;string.h&gt;</span>
&nbsp;
<span style="color: #0000ff;">int</span> count<span style="color: #008000;">&#91;</span><span style="color: #0000dd;">27</span><span style="color: #008000;">&#93;</span>,max,min;
<span style="color: #0000ff;">char</span> s<span style="color: #008000;">&#91;</span><span style="color: #0000dd;">200</span><span style="color: #008000;">&#93;</span>;
<span style="color: #0000ff;">bool</span> notprime<span style="color: #008000;">&#91;</span><span style="color: #0000dd;">102</span><span style="color: #008000;">&#93;</span>;
&nbsp;
<span style="color: #0000ff;">int</span> main<span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span>
<span style="color: #008000;">&#123;</span>
	<span style="color: #0000dd;">freopen</span><span style="color: #008000;">&#40;</span><span style="color: #FF0000;">&quot;word.in&quot;</span>,<span style="color: #FF0000;">&quot;r&quot;</span>,<span style="color: #0000ff;">stdin</span><span style="color: #008000;">&#41;</span>;
	<span style="color: #0000dd;">freopen</span><span style="color: #008000;">&#40;</span><span style="color: #FF0000;">&quot;word.out&quot;</span>,<span style="color: #FF0000;">&quot;w&quot;</span>,<span style="color: #0000ff;">stdout</span><span style="color: #008000;">&#41;</span>;
	<span style="color: #0000dd;">gets</span><span style="color: #008000;">&#40;</span>s<span style="color: #008000;">&#41;</span>;
	<span style="color: #0000dd;">memset</span><span style="color: #008000;">&#40;</span>count,<span style="color:#800080;">0</span>,<span style="color: #0000dd;">sizeof</span><span style="color: #008000;">&#40;</span>count<span style="color: #008000;">&#41;</span><span style="color: #008000;">&#41;</span>;
	<span style="color: #0000ff;">for</span> <span style="color: #008000;">&#40;</span><span style="color: #0000ff;">int</span> i<span style="color: #000080;">=</span><span style="color:#800080;">0</span>;s<span style="color: #008000;">&#91;</span>i<span style="color: #008000;">&#93;</span>;i<span style="color: #000040;">++</span><span style="color: #008000;">&#41;</span>
		count<span style="color: #008000;">&#91;</span>s<span style="color: #008000;">&#91;</span>i<span style="color: #008000;">&#93;</span><span style="color: #000040;">-</span><span style="color: #0000dd;">96</span><span style="color: #008000;">&#93;</span>++;
	min <span style="color: #000080;">=</span> <span style="color: #0000dd;">2147483647</span>;
	max <span style="color: #000080;">=</span> <span style="color:#800080;">0</span>;
	<span style="color: #0000ff;">for</span> <span style="color: #008000;">&#40;</span><span style="color: #0000ff;">int</span> i<span style="color: #000080;">=</span><span style="color: #0000dd;">1</span>;i<span style="color: #000080;">&lt;=</span><span style="color: #0000dd;">26</span>;i<span style="color: #000040;">++</span><span style="color: #008000;">&#41;</span>
	<span style="color: #008000;">&#123;</span>
		<span style="color: #0000ff;">if</span> <span style="color: #008000;">&#40;</span><span style="color: #000040;">!</span>count<span style="color: #008000;">&#91;</span>i<span style="color: #008000;">&#93;</span><span style="color: #008000;">&#41;</span>
			<span style="color: #0000ff;">continue</span>;
		<span style="color: #0000ff;">if</span> <span style="color: #008000;">&#40;</span>max<span style="color: #000080;">&lt;</span>count<span style="color: #008000;">&#91;</span>i<span style="color: #008000;">&#93;</span><span style="color: #008000;">&#41;</span>
			max <span style="color: #000080;">=</span> count<span style="color: #008000;">&#91;</span>i<span style="color: #008000;">&#93;</span>;
		<span style="color: #0000ff;">if</span> <span style="color: #008000;">&#40;</span>min<span style="color: #000080;">&gt;</span>count<span style="color: #008000;">&#91;</span>i<span style="color: #008000;">&#93;</span><span style="color: #008000;">&#41;</span>
			min <span style="color: #000080;">=</span> count<span style="color: #008000;">&#91;</span>i<span style="color: #008000;">&#93;</span>;
	<span style="color: #008000;">&#125;</span>
	<span style="color: #0000ff;">int</span> j;
	notprime<span style="color: #008000;">&#91;</span><span style="color:#800080;">0</span><span style="color: #008000;">&#93;</span> <span style="color: #000080;">=</span> <span style="color: #0000ff;">true</span>;
	notprime<span style="color: #008000;">&#91;</span><span style="color: #0000dd;">1</span><span style="color: #008000;">&#93;</span> <span style="color: #000080;">=</span> <span style="color: #0000ff;">true</span>;
	<span style="color: #0000ff;">for</span> <span style="color: #008000;">&#40;</span><span style="color: #0000ff;">int</span> i<span style="color: #000080;">=</span><span style="color: #0000dd;">2</span>;i<span style="color: #000080;">&lt;=</span><span style="color: #0000dd;">50</span>;i<span style="color: #000040;">++</span><span style="color: #008000;">&#41;</span>
	<span style="color: #008000;">&#123;</span>
		j <span style="color: #000080;">=</span> i<span style="color: #000040;">*</span><span style="color: #0000dd;">2</span>;
		<span style="color: #0000ff;">while</span> <span style="color: #008000;">&#40;</span>j<span style="color: #000080;">&lt;=</span><span style="color: #0000dd;">100</span><span style="color: #008000;">&#41;</span>
		<span style="color: #008000;">&#123;</span>
			notprime<span style="color: #008000;">&#91;</span>j<span style="color: #008000;">&#93;</span> <span style="color: #000080;">=</span> <span style="color: #0000ff;">true</span>;
			j <span style="color: #000040;">+</span><span style="color: #000080;">=</span> i;
		<span style="color: #008000;">&#125;</span>
	<span style="color: #008000;">&#125;</span>
	max <span style="color: #000040;">-</span><span style="color: #000080;">=</span> min;
	<span style="color: #0000ff;">if</span> <span style="color: #008000;">&#40;</span>notprime<span style="color: #008000;">&#91;</span>max<span style="color: #008000;">&#93;</span><span style="color: #008000;">&#41;</span>
	<span style="color: #008000;">&#123;</span>
		<span style="color: #0000dd;">printf</span><span style="color: #008000;">&#40;</span><span style="color: #FF0000;">&quot;No Answer<span style="color: #666666; font-weight: bold;">\n</span>&quot;</span><span style="color: #008000;">&#41;</span>;
		max <span style="color: #000080;">=</span> <span style="color:#800080;">0</span>;
	<span style="color: #008000;">&#125;</span>
	<span style="color: #0000ff;">else</span>
		<span style="color: #0000dd;">printf</span><span style="color: #008000;">&#40;</span><span style="color: #FF0000;">&quot;Lucky Word<span style="color: #666666; font-weight: bold;">\n</span>&quot;</span><span style="color: #008000;">&#41;</span>;
	<span style="color: #0000dd;">printf</span><span style="color: #008000;">&#40;</span><span style="color: #FF0000;">&quot;%d<span style="color: #666666; font-weight: bold;">\n</span>&quot;</span>,max<span style="color: #008000;">&#41;</span>;
	<span style="color: #0000ff;">return</span> <span style="color:#800080;">0</span>;
<span style="color: #008000;">&#125;</span></pre></div></div>

<p>第二题 matches</p>
<p>题意简述: 给你n(n<=24)根火柴棒,叫你拼出 "A + B = C"这样的等式,求方案数.</p>
<p>解题思路: 直接枚举A和B(事实证明只到3位数),事先预处理2000以内各个数所用的火柴数.直接枚举出解</p>
<p>代码:</p>

<div class="wp_syntax"><div class="code"><pre class="cpp cpp" style="font-family:monospace;"><span style="color: #339900;">#include &lt;stdio.h&gt;</span>
<span style="color: #339900;">#include &lt;string.h&gt;</span>
&nbsp;
<span style="color: #0000ff;">int</span> n,ans;
<span style="color: #0000ff;">int</span> c<span style="color: #008000;">&#91;</span><span style="color: #0000dd;">2002</span><span style="color: #008000;">&#93;</span><span style="color: #000080;">=</span><span style="color: #008000;">&#123;</span><span style="color: #0000dd;">6</span>,<span style="color: #0000dd;">2</span>,<span style="color: #0000dd;">5</span>,<span style="color: #0000dd;">5</span>,<span style="color: #0000dd;">4</span>,<span style="color: #0000dd;">5</span>,<span style="color: #0000dd;">6</span>,<span style="color: #0000dd;">3</span>,<span style="color: #0000dd;">7</span>,<span style="color: #0000dd;">6</span><span style="color: #008000;">&#125;</span>;
&nbsp;
<span style="color: #0000ff;">int</span> main<span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span>
<span style="color: #008000;">&#123;</span>
	<span style="color: #0000dd;">freopen</span><span style="color: #008000;">&#40;</span><span style="color: #FF0000;">&quot;matches.in&quot;</span>,<span style="color: #FF0000;">&quot;r&quot;</span>,<span style="color: #0000ff;">stdin</span><span style="color: #008000;">&#41;</span>;
	<span style="color: #0000dd;">freopen</span><span style="color: #008000;">&#40;</span><span style="color: #FF0000;">&quot;matches.out&quot;</span>,<span style="color: #FF0000;">&quot;w&quot;</span>,<span style="color: #0000ff;">stdout</span><span style="color: #008000;">&#41;</span>;
	<span style="color: #0000dd;">scanf</span><span style="color: #008000;">&#40;</span><span style="color: #FF0000;">&quot;%d&quot;</span>,<span style="color: #000040;">&amp;</span>n<span style="color: #008000;">&#41;</span>;
	<span style="color: #0000ff;">for</span> <span style="color: #008000;">&#40;</span><span style="color: #0000ff;">int</span> i<span style="color: #000080;">=</span><span style="color: #0000dd;">10</span>;i<span style="color: #000080;">&lt;=</span><span style="color: #0000dd;">1800</span>;i<span style="color: #000040;">++</span><span style="color: #008000;">&#41;</span>
		c<span style="color: #008000;">&#91;</span>i<span style="color: #008000;">&#93;</span> <span style="color: #000080;">=</span> c<span style="color: #008000;">&#91;</span>i<span style="color: #000040;">/</span><span style="color: #0000dd;">10</span><span style="color: #008000;">&#93;</span><span style="color: #000040;">+</span>c<span style="color: #008000;">&#91;</span>i<span style="color: #000040;">%</span><span style="color:#800080;">10</span><span style="color: #008000;">&#93;</span>;
	n <span style="color: #000040;">-</span><span style="color: #000080;">=</span> <span style="color: #0000dd;">4</span>;ans <span style="color: #000080;">=</span> <span style="color:#800080;">0</span>;
	<span style="color: #0000ff;">for</span> <span style="color: #008000;">&#40;</span><span style="color: #0000ff;">int</span> i<span style="color: #000080;">=</span><span style="color:#800080;">0</span>;i<span style="color: #000080;">&lt;=</span><span style="color: #0000dd;">800</span>;i<span style="color: #000040;">++</span><span style="color: #008000;">&#41;</span>
		<span style="color: #0000ff;">for</span> <span style="color: #008000;">&#40;</span><span style="color: #0000ff;">int</span> j<span style="color: #000080;">=</span><span style="color:#800080;">0</span>;j<span style="color: #000080;">&lt;=</span><span style="color: #0000dd;">800</span>;j<span style="color: #000040;">++</span><span style="color: #008000;">&#41;</span>
			<span style="color: #0000ff;">if</span> <span style="color: #008000;">&#40;</span>c<span style="color: #008000;">&#91;</span>i<span style="color: #008000;">&#93;</span><span style="color: #000040;">+</span>c<span style="color: #008000;">&#91;</span>j<span style="color: #008000;">&#93;</span><span style="color: #000040;">+</span>c<span style="color: #008000;">&#91;</span>i<span style="color: #000040;">+</span>j<span style="color: #008000;">&#93;</span><span style="color: #000080;">==</span>n<span style="color: #008000;">&#41;</span>
				ans++;
	<span style="color: #0000dd;">printf</span><span style="color: #008000;">&#40;</span><span style="color: #FF0000;">&quot;%d<span style="color: #666666; font-weight: bold;">\n</span>&quot;</span>,ans<span style="color: #008000;">&#41;</span>;
	<span style="color: #0000ff;">return</span> <span style="color:#800080;">0</span>;
<span style="color: #008000;">&#125;</span></pre></div></div>

<p>第三题 message</p>
<p>题意简述: 给一个矩阵(左上角和右下角固定为0),从左上角走两次到右下角,两次走的路径不能有交集(即一个点不能被走两次),求两次走过的格子上的数的和最大是多少.(类似二取方格数.)</p>
<p>解题思路: 二取方格数很经典的题目了,于是便直接以 f[i][j][k][p] 表示第一条路径走到(i,j),第二条路径走到(k,p)所取到的数的最大值..转移方程就很好办了..同时注意判断两条路不要从同一个点转移过来就好了.</p>

<div class="wp_syntax"><div class="code"><pre class="cpp cpp" style="font-family:monospace;"><span style="color: #339900;">#include &lt;stdio.h&gt;</span>
<span style="color: #339900;">#include &lt;string.h&gt;</span>
&nbsp;
<span style="color: #0000ff;">int</span> a<span style="color: #008000;">&#91;</span><span style="color: #0000dd;">52</span><span style="color: #008000;">&#93;</span><span style="color: #008000;">&#91;</span><span style="color: #0000dd;">52</span><span style="color: #008000;">&#93;</span>,f<span style="color: #008000;">&#91;</span><span style="color: #0000dd;">52</span><span style="color: #008000;">&#93;</span><span style="color: #008000;">&#91;</span><span style="color: #0000dd;">52</span><span style="color: #008000;">&#93;</span><span style="color: #008000;">&#91;</span><span style="color: #0000dd;">52</span><span style="color: #008000;">&#93;</span><span style="color: #008000;">&#91;</span><span style="color: #0000dd;">52</span><span style="color: #008000;">&#93;</span>,n,m,ni,nj,nk,np;
<span style="color: #0000ff;">int</span> next<span style="color: #008000;">&#91;</span><span style="color: #0000dd;">4</span><span style="color: #008000;">&#93;</span><span style="color: #008000;">&#91;</span><span style="color: #0000dd;">4</span><span style="color: #008000;">&#93;</span><span style="color: #000080;">=</span><span style="color: #008000;">&#123;</span><span style="color:#800080;">0</span>,<span style="color: #000040;">-</span><span style="color: #0000dd;">1</span>,<span style="color: #000040;">-</span><span style="color: #0000dd;">1</span>,<span style="color:#800080;">0</span>,<span style="color: #000040;">-</span><span style="color: #0000dd;">1</span>,<span style="color:#800080;">0</span>,<span style="color: #000040;">-</span><span style="color: #0000dd;">1</span>,<span style="color:#800080;">0</span>,<span style="color:#800080;">0</span>,<span style="color: #000040;">-</span><span style="color: #0000dd;">1</span>,<span style="color:#800080;">0</span>,<span style="color: #000040;">-</span><span style="color: #0000dd;">1</span>,<span style="color: #000040;">-</span><span style="color: #0000dd;">1</span>,<span style="color:#800080;">0</span>,<span style="color:#800080;">0</span>,<span style="color: #000040;">-</span><span style="color: #0000dd;">1</span><span style="color: #008000;">&#125;</span>;
&nbsp;
<span style="color: #0000ff;">int</span> main<span style="color: #008000;">&#40;</span><span style="color: #008000;">&#41;</span>
<span style="color: #008000;">&#123;</span>
	<span style="color: #0000dd;">freopen</span><span style="color: #008000;">&#40;</span><span style="color: #FF0000;">&quot;message.in&quot;</span>,<span style="color: #FF0000;">&quot;r&quot;</span>,<span style="color: #0000ff;">stdin</span><span style="color: #008000;">&#41;</span>;
	<span style="color: #0000dd;">freopen</span><span style="color: #008000;">&#40;</span><span style="color: #FF0000;">&quot;message.out&quot;</span>,<span style="color: #FF0000;">&quot;w&quot;</span>,<span style="color: #0000ff;">stdout</span><span style="color: #008000;">&#41;</span>;
	<span style="color: #0000dd;">scanf</span><span style="color: #008000;">&#40;</span><span style="color: #FF0000;">&quot;%d %d&quot;</span>,<span style="color: #000040;">&amp;</span>n,<span style="color: #000040;">&amp;</span>m<span style="color: #008000;">&#41;</span>;
	<span style="color: #0000dd;">memset</span><span style="color: #008000;">&#40;</span>f,<span style="color:#800080;">0</span>,<span style="color: #0000dd;">sizeof</span><span style="color: #008000;">&#40;</span>f<span style="color: #008000;">&#41;</span><span style="color: #008000;">&#41;</span>;
	<span style="color: #0000ff;">for</span> <span style="color: #008000;">&#40;</span><span style="color: #0000ff;">int</span> i<span style="color: #000080;">=</span><span style="color: #0000dd;">1</span>;i<span style="color: #000080;">&lt;=</span>n;i<span style="color: #000040;">++</span><span style="color: #008000;">&#41;</span>
		<span style="color: #0000ff;">for</span> <span style="color: #008000;">&#40;</span><span style="color: #0000ff;">int</span> j<span style="color: #000080;">=</span><span style="color: #0000dd;">1</span>;j<span style="color: #000080;">&lt;=</span>m;j<span style="color: #000040;">++</span><span style="color: #008000;">&#41;</span>
			<span style="color: #0000dd;">scanf</span><span style="color: #008000;">&#40;</span><span style="color: #FF0000;">&quot;%d&quot;</span>,<span style="color: #000040;">&amp;</span>a<span style="color: #008000;">&#91;</span>i<span style="color: #008000;">&#93;</span><span style="color: #008000;">&#91;</span>j<span style="color: #008000;">&#93;</span><span style="color: #008000;">&#41;</span>;
	<span style="color: #0000ff;">for</span> <span style="color: #008000;">&#40;</span><span style="color: #0000ff;">int</span> i<span style="color: #000080;">=</span><span style="color: #0000dd;">1</span>;i<span style="color: #000080;">&lt;=</span>n;i<span style="color: #000040;">++</span><span style="color: #008000;">&#41;</span>
		<span style="color: #0000ff;">for</span> <span style="color: #008000;">&#40;</span><span style="color: #0000ff;">int</span> j<span style="color: #000080;">=</span><span style="color: #0000dd;">1</span>;j<span style="color: #000080;">&lt;=</span>m;j<span style="color: #000040;">++</span><span style="color: #008000;">&#41;</span>
			<span style="color: #0000ff;">for</span> <span style="color: #008000;">&#40;</span><span style="color: #0000ff;">int</span> k<span style="color: #000080;">=</span><span style="color: #0000dd;">1</span>;k<span style="color: #000080;">&lt;=</span>n;k<span style="color: #000040;">++</span><span style="color: #008000;">&#41;</span>
				<span style="color: #0000ff;">for</span> <span style="color: #008000;">&#40;</span><span style="color: #0000ff;">int</span> p<span style="color: #000080;">=</span>j;p<span style="color: #000080;">&lt;=</span>m;p<span style="color: #000040;">++</span><span style="color: #008000;">&#41;</span>
					<span style="color: #0000ff;">for</span> <span style="color: #008000;">&#40;</span><span style="color: #0000ff;">int</span> m<span style="color: #000080;">=</span><span style="color:#800080;">0</span>;m<span style="color: #000080;">&lt;=</span><span style="color: #0000dd;">3</span>;m<span style="color: #000040;">++</span><span style="color: #008000;">&#41;</span>
					<span style="color: #008000;">&#123;</span>
						ni <span style="color: #000080;">=</span> i <span style="color: #000040;">+</span> next<span style="color: #008000;">&#91;</span>m<span style="color: #008000;">&#93;</span><span style="color: #008000;">&#91;</span><span style="color:#800080;">0</span><span style="color: #008000;">&#93;</span>;
						nj <span style="color: #000080;">=</span> j <span style="color: #000040;">+</span> next<span style="color: #008000;">&#91;</span>m<span style="color: #008000;">&#93;</span><span style="color: #008000;">&#91;</span><span style="color: #0000dd;">1</span><span style="color: #008000;">&#93;</span>;
						nk <span style="color: #000080;">=</span> k <span style="color: #000040;">+</span> next<span style="color: #008000;">&#91;</span>m<span style="color: #008000;">&#93;</span><span style="color: #008000;">&#91;</span><span style="color: #0000dd;">2</span><span style="color: #008000;">&#93;</span>;
						np <span style="color: #000080;">=</span> p <span style="color: #000040;">+</span> next<span style="color: #008000;">&#91;</span>m<span style="color: #008000;">&#93;</span><span style="color: #008000;">&#91;</span><span style="color: #0000dd;">3</span><span style="color: #008000;">&#93;</span>;
						<span style="color: #0000ff;">if</span> <span style="color: #008000;">&#40;</span><span style="color: #008000;">&#40;</span>ni<span style="color: #000040;">!</span><span style="color: #000080;">=</span>nk<span style="color: #008000;">&#41;</span>||<span style="color: #008000;">&#40;</span>nj<span style="color: #000040;">!</span><span style="color: #000080;">=</span>np<span style="color: #008000;">&#41;</span><span style="color: #008000;">&#41;</span>
							<span style="color: #0000ff;">if</span> <span style="color: #008000;">&#40;</span>f<span style="color: #008000;">&#91;</span>i<span style="color: #008000;">&#93;</span><span style="color: #008000;">&#91;</span>j<span style="color: #008000;">&#93;</span><span style="color: #008000;">&#91;</span>k<span style="color: #008000;">&#93;</span><span style="color: #008000;">&#91;</span>p<span style="color: #008000;">&#93;</span> <span style="color: #000080;">&lt;</span> f<span style="color: #008000;">&#91;</span>ni<span style="color: #008000;">&#93;</span><span style="color: #008000;">&#91;</span>nj<span style="color: #008000;">&#93;</span><span style="color: #008000;">&#91;</span>nk<span style="color: #008000;">&#93;</span><span style="color: #008000;">&#91;</span>np<span style="color: #008000;">&#93;</span> <span style="color: #000040;">+</span> a<span style="color: #008000;">&#91;</span>i<span style="color: #008000;">&#93;</span><span style="color: #008000;">&#91;</span>j<span style="color: #008000;">&#93;</span> <span style="color: #000040;">+</span> a<span style="color: #008000;">&#91;</span>k<span style="color: #008000;">&#93;</span><span style="color: #008000;">&#91;</span>p<span style="color: #008000;">&#93;</span><span style="color: #008000;">&#41;</span>
								f<span style="color: #008000;">&#91;</span>i<span style="color: #008000;">&#93;</span><span style="color: #008000;">&#91;</span>j<span style="color: #008000;">&#93;</span><span style="color: #008000;">&#91;</span>k<span style="color: #008000;">&#93;</span><span style="color: #008000;">&#91;</span>p<span style="color: #008000;">&#93;</span> <span style="color: #000080;">=</span> f<span style="color: #008000;">&#91;</span>ni<span style="color: #008000;">&#93;</span><span style="color: #008000;">&#91;</span>nj<span style="color: #008000;">&#93;</span><span style="color: #008000;">&#91;</span>nk<span style="color: #008000;">&#93;</span><span style="color: #008000;">&#91;</span>np<span style="color: #008000;">&#93;</span> <span style="color: #000040;">+</span> a<span style="color: #008000;">&#91;</span>i<span style="color: #008000;">&#93;</span><span style="color: #008000;">&#91;</span>j<span style="color: #008000;">&#93;</span> <span style="color: #000040;">+</span> a<span style="color: #008000;">&#91;</span>k<span style="color: #008000;">&#93;</span><span style="color: #008000;">&#91;</span>p<span style="color: #008000;">&#93;</span>;
					<span style="color: #008000;">&#125;</span>
	<span style="color: #0000dd;">printf</span><span style="color: #008000;">&#40;</span><span style="color: #FF0000;">&quot;%d&quot;</span>,f<span style="color: #008000;">&#91;</span>n<span style="color: #008000;">&#93;</span><span style="color: #008000;">&#91;</span>m<span style="color: #008000;">&#93;</span><span style="color: #008000;">&#91;</span>n<span style="color: #008000;">&#93;</span><span style="color: #008000;">&#91;</span>m<span style="color: #008000;">&#93;</span><span style="color: #008000;">&#41;</span>;
	<span style="color: #0000ff;">return</span> <span style="color:#800080;">0</span>;
<span style="color: #008000;">&#125;</span></pre></div></div>

<p>第四题 twostack</p>
<p>以下引用saybi的题解 <a href="http://sqybi.com/blog/archives/78">http://sqybi.com/blog/archives/78</a></p>
<p>这道题大概可以归结为如下题意:<br />
有两个队列和两个栈,分别命名为队列1(q1),队列2(q2),栈1(s1)和栈2(s2).最初的时候,q2,s1和s2都为空,而q1中有n个数(n<=1000),为1~n的某个排列.<br />
现在支持如下四种操作:<br />
a操作,将 q1的首元素提取出并加入s1的栈顶.<br />
b操作,将s1的栈顶元素弹出并加入<del>q1</del>q2的队列尾.<br />
c操作,将 q1的首元素提取出并加入s2的栈顶.<br />
d操作,将s2的栈顶元素弹出并加入<del>q1</del>q2的队列尾.<br />
请判断,是否可以经过一系列操作之后,使得q2中依次存储着1,2,3,…,n.如果可以,求出字典序最小的一个操作序列.</p>
<p>这道题的错误做法很多,错误做法却能得满分的也很多,这里就不多说了.直接切入正题,就是即将介绍的这个基于二分图的算法.<br />
注意到并没有说基于二分图匹配,因为这个算法和二分图匹配无关.这个算法只是用到了给一个图着色成二分图.</p>
<p>第一步需要解决的问题是,判断是否有解.</p>
<p>考虑对于任意两个数q1[i]和q1[j]来说,它们不能压入同一个栈中的充要条件是什么(注意没有必要使它们同时存在于同一个栈中,只是压入了同一个栈).实际上,这个条件p是:存在一个k,使得i&lt;j&lt;k且q1[k]&lt;q1[i]&lt;q1[j].</p>
<p>首先证明充分性,即如果满足条件p,那么这两个数一定不能压入同一个栈.这个结论很显然,使用反证法可证.<br />
假设这两个数压入了同一个栈,那么在压入q1[k]的时候栈内情况如下:<br />
…q1[i]…q1[j]…<br />
因为q1[k]比q1[i]和q1[j]都小,所以很显然,当q1[k]没有被弹出的时候,另外两个数也都不能被弹出(否则q2中的数字顺序就不是1,2,3,…,n了).<br />
而之后,无论其它的数字在什么时候被弹出,q1[j]总是会在q1[i]之前弹出.而q1[j]>q1[i],这显然是不正确的.</p>
<p>接下来证明必要性.也就是,如果两个数不可以压入同一个栈,那么它们一定满足条件p.这里我们来证明它的逆否命题,也就是&quot;如果不满足条件p,那么这两个数一定可以压入同一个栈.&quot;<br />
不满足条件p有两种情况:一种是对于任意i&lt;j&lt;k且q1[i]&lt;q1[j],q1[k]&gt;q1[i];另一种是对于任意i&lt;j,q1[i]&gt;q1[j].<br />
第一种情况下,很显然,在q1[k]被压入栈的时候,q1[i]已经被弹出栈.那么,q1[k]不会对q1[j]产生任何影响(这里可能有点乱,因为看起来,当q1[j]<q1[k]的时候,是会有影响的,但实际上,这还需要另一个数r,满足j&lt;k&lt;r且 q1[r]&lt;q1[j]&lt;q1[k],也就是证明充分性的时候所说的情况…而事实上我们现在并不考虑这个r,所以说q1[k]对q1[j]没有影响).<br />
第二种情况下,我们可以发现这其实就是一个降序序列,所以所有数字都可以压入同一个栈.<br />
这样,原命题的逆否命题得证,所以原命题得证.</p>
<p>此时,条件p为q1[i]和q1[j]不能压入同一个栈的充要条件也得证.</p>
<p>这样,我们对所有的数对(i,j)满足1&lt;=i&lt;j&lt;=n,检查是否存在i&lt;j&lt;k满足p1[k]&lt; p1[i]</p>
<p1[j].如果存在,那么在点i和点j之间连一条无向边,表示p1[i]和p1[j]不能压入同一个栈.此时想到了什么?那就是二分图~<br />
二分图的两部分看作两个栈,因为二分图的同一部分内不会出现任何连边,也就相当于不能压入同一个栈的所有结点都分到了两个栈中.<br />
此时我们只考虑检查是否有解,所以只要O(n)检查出这个图是不是二分图,就可以得知是否有解.</p>
<p>此时,检查有解的问题已经解决.接下来的问题是,如何找到字典序最小的解.<br />
实际上,可以发现,如果把二分图染成1和2两种颜色,那么结点染色为1对应当前结点被压入s1,为2对应被压入s2.为了字典序尽量小,我们希望让编号小的结点优先压入s1.<br />
又发现二分图的不同连通分量之间的染色是互不影响的,所以可以每次选取一个未染色的编号最小的结点,将它染色为1并从它开始DFS染色,直到所有结点都被染色为止.这样,我们就得到了每个结点应该压入哪个栈中.接下来要做的,只不过是模拟之后输出序列啦~</p>
<p>还有一点小问题,就是如果对于数对(i,j),都去枚举检查是否存在k使得p1[k]</p>
<p1[i]<p1[j]的话,那么复杂度就升到了O(n^3).解决方法就是,首先预处理出数组b,b[i]表示从p1[i]到p1[n]中的最小值.接下来,只需要枚举所有数对(i,j),检查 b[j+1]是否小于p1[i]且p1[i]是否小于p1[j]就可以了.</p>
<p>MRain:程序是我自己写的(懒得按照格式输出了),已经过了所有标准数据.</p>

<div class="wp_syntax"><div class="code"><pre class="pascal pascal" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">var</span>	a<span style="color: #339933;">,</span>b<span style="color: #339933;">,</span>head<span style="color: #339933;">,</span>next<span style="color: #339933;">,</span>point<span style="color: #339933;">,</span>color<span style="color: #339933;">:</span><span style="color: #000066; font-weight: bold;">array</span><span style="color: #009900;">&#91;</span>0..2001<span style="color: #009900;">&#93;</span><span style="color: #000000; font-weight: bold;">of</span> <span style="color: #000066; font-weight: bold;">longint</span>;
	s<span style="color: #339933;">:</span><span style="color: #000066; font-weight: bold;">array</span><span style="color: #009900;">&#91;</span>1..2<span style="color: #339933;">,</span>0..1000<span style="color: #009900;">&#93;</span><span style="color: #000000; font-weight: bold;">of</span> <span style="color: #000066; font-weight: bold;">longint</span>;
	n<span style="color: #339933;">,</span>p<span style="color: #339933;">,</span>i<span style="color: #339933;">,</span>j<span style="color: #339933;">,</span>last<span style="color: #339933;">:</span><span style="color: #000066; font-weight: bold;">longint</span>;
<span style="color: #000000; font-weight: bold;">procedure</span> badend;
<span style="color: #000000; font-weight: bold;">begin</span>
	<span style="color: #000066;">writeln</span><span style="color: #009900;">&#40;</span>0<span style="color: #009900;">&#41;</span>;
	close<span style="color: #009900;">&#40;</span>output<span style="color: #009900;">&#41;</span>;
	halt;
<span style="color: #000000; font-weight: bold;">end</span>;
<span style="color: #000000; font-weight: bold;">procedure</span> addedge<span style="color: #009900;">&#40;</span>a<span style="color: #339933;">,</span>b<span style="color: #339933;">:</span><span style="color: #000066; font-weight: bold;">longint</span><span style="color: #009900;">&#41;</span>;
<span style="color: #000000; font-weight: bold;">var</span>	t<span style="color: #339933;">:</span><span style="color: #000066; font-weight: bold;">longint</span>;
<span style="color: #000000; font-weight: bold;">begin</span>
	inc<span style="color: #009900;">&#40;</span>p<span style="color: #009900;">&#41;</span>;
	point<span style="color: #009900;">&#91;</span>p<span style="color: #009900;">&#93;</span><span style="color: #339933;">:=</span>b;
	<span style="color: #000000; font-weight: bold;">if</span> head<span style="color: #009900;">&#91;</span>a<span style="color: #009900;">&#93;</span><span style="color: #339933;">=</span>0 <span style="color: #000000; font-weight: bold;">then</span>
		head<span style="color: #009900;">&#91;</span>a<span style="color: #009900;">&#93;</span><span style="color: #339933;">:=</span>p
	<span style="color: #000000; font-weight: bold;">else</span>
	<span style="color: #000000; font-weight: bold;">begin</span>
		t<span style="color: #339933;">:=</span>head<span style="color: #009900;">&#91;</span>a<span style="color: #009900;">&#93;</span>;
		<span style="color: #000000; font-weight: bold;">while</span> next<span style="color: #009900;">&#91;</span>t<span style="color: #009900;">&#93;</span>&lt;&gt;0 <span style="color: #000000; font-weight: bold;">do</span>
			t<span style="color: #339933;">:=</span>next<span style="color: #009900;">&#91;</span>t<span style="color: #009900;">&#93;</span>;
		next<span style="color: #009900;">&#91;</span>t<span style="color: #009900;">&#93;</span><span style="color: #339933;">:=</span>p;
	<span style="color: #000000; font-weight: bold;">end</span>;
<span style="color: #000000; font-weight: bold;">end</span>;
<span style="color: #000000; font-weight: bold;">procedure</span> dfs<span style="color: #009900;">&#40;</span>now<span style="color: #339933;">:</span><span style="color: #000066; font-weight: bold;">longint</span><span style="color: #009900;">&#41;</span>;
<span style="color: #000000; font-weight: bold;">var</span>	t<span style="color: #339933;">:</span><span style="color: #000066; font-weight: bold;">longint</span>;
<span style="color: #000000; font-weight: bold;">begin</span>
	t<span style="color: #339933;">:=</span>head<span style="color: #009900;">&#91;</span>now<span style="color: #009900;">&#93;</span>;
	<span style="color: #000000; font-weight: bold;">while</span> t&lt;&gt;0 <span style="color: #000000; font-weight: bold;">do</span>
	<span style="color: #000000; font-weight: bold;">begin</span>
		<span style="color: #000000; font-weight: bold;">if</span> color<span style="color: #009900;">&#91;</span>point<span style="color: #009900;">&#91;</span>t<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">=</span>0 <span style="color: #000000; font-weight: bold;">then</span>
		<span style="color: #000000; font-weight: bold;">begin</span>
			color<span style="color: #009900;">&#91;</span>point<span style="color: #009900;">&#91;</span>t<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">:=</span><span style="color: #cc66cc;">3</span><span style="color: #339933;">-</span>color<span style="color: #009900;">&#91;</span>now<span style="color: #009900;">&#93;</span>;
			dfs<span style="color: #009900;">&#40;</span>point<span style="color: #009900;">&#91;</span>t<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span>;
		<span style="color: #000000; font-weight: bold;">end</span>;
		<span style="color: #000000; font-weight: bold;">if</span> color<span style="color: #009900;">&#91;</span>point<span style="color: #009900;">&#91;</span>t<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">=</span>color<span style="color: #009900;">&#91;</span>now<span style="color: #009900;">&#93;</span> <span style="color: #000000; font-weight: bold;">then</span> badend;
		t<span style="color: #339933;">:=</span>next<span style="color: #009900;">&#91;</span>t<span style="color: #009900;">&#93;</span>;
	<span style="color: #000000; font-weight: bold;">end</span>;
<span style="color: #000000; font-weight: bold;">end</span>;
<span style="color: #000000; font-weight: bold;">begin</span>
	assign<span style="color: #009900;">&#40;</span>input<span style="color: #339933;">,</span><span style="">'twostack.in'</span><span style="color: #009900;">&#41;</span>;
	reset<span style="color: #009900;">&#40;</span>input<span style="color: #009900;">&#41;</span>;
	assign<span style="color: #009900;">&#40;</span>output<span style="color: #339933;">,</span><span style="">'twostack.out'</span><span style="color: #009900;">&#41;</span>;
	rewrite<span style="color: #009900;">&#40;</span>output<span style="color: #009900;">&#41;</span>;
	fillchar<span style="color: #009900;">&#40;</span>s<span style="color: #339933;">,</span>sizeof<span style="color: #009900;">&#40;</span>s<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>0<span style="color: #009900;">&#41;</span>;
	fillchar<span style="color: #009900;">&#40;</span>a<span style="color: #339933;">,</span>sizeof<span style="color: #009900;">&#40;</span>a<span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>0<span style="color: #009900;">&#41;</span>;
	<span style="color: #000066;">readln</span><span style="color: #009900;">&#40;</span>n<span style="color: #009900;">&#41;</span>;
	<span style="color: #000000; font-weight: bold;">for</span> i<span style="color: #339933;">:=</span><span style="color: #cc66cc;">1</span> <span style="color: #000000; font-weight: bold;">to</span> n <span style="color: #000000; font-weight: bold;">do</span>
		<span style="color: #000066;">read</span><span style="color: #009900;">&#40;</span>a<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span>;
&nbsp;
	b<span style="color: #009900;">&#91;</span>n<span style="color: #339933;">+</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">:=</span>maxlongint;p<span style="color: #339933;">:=</span>0;
	<span style="color: #000000; font-weight: bold;">for</span> i<span style="color: #339933;">:=</span>n <span style="color: #000000; font-weight: bold;">downto</span> <span style="color: #cc66cc;">1</span> <span style="color: #000000; font-weight: bold;">do</span>
	<span style="color: #000000; font-weight: bold;">begin</span>
		b<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span><span style="color: #339933;">:=</span>b<span style="color: #009900;">&#91;</span>i<span style="color: #339933;">+</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span>;
		<span style="color: #000000; font-weight: bold;">if</span> a<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span>&lt;b<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span> <span style="color: #000000; font-weight: bold;">then</span> b<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span><span style="color: #339933;">:=</span>a<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span>;
	<span style="color: #000000; font-weight: bold;">end</span>;
	<span style="color: #000000; font-weight: bold;">for</span> i<span style="color: #339933;">:=</span><span style="color: #cc66cc;">1</span> <span style="color: #000000; font-weight: bold;">to</span> n <span style="color: #000000; font-weight: bold;">do</span>
		<span style="color: #000000; font-weight: bold;">for</span> j<span style="color: #339933;">:=</span>i<span style="color: #339933;">+</span><span style="color: #cc66cc;">1</span> <span style="color: #000000; font-weight: bold;">to</span> n <span style="color: #000000; font-weight: bold;">do</span>
			<span style="color: #000000; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>b<span style="color: #009900;">&#91;</span>j<span style="color: #339933;">+</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#93;</span>&lt;a<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #000066;">and</span><span style="color: #009900;">&#40;</span>a<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span>&lt;a<span style="color: #009900;">&#91;</span>j<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">then</span>
			<span style="color: #000000; font-weight: bold;">begin</span>
				addedge<span style="color: #009900;">&#40;</span>i<span style="color: #339933;">,</span>j<span style="color: #009900;">&#41;</span>;
				addedge<span style="color: #009900;">&#40;</span>j<span style="color: #339933;">,</span>i<span style="color: #009900;">&#41;</span>;
			<span style="color: #000000; font-weight: bold;">end</span>;
	<span style="color: #000000; font-weight: bold;">for</span> i<span style="color: #339933;">:=</span><span style="color: #cc66cc;">1</span> <span style="color: #000000; font-weight: bold;">to</span> n <span style="color: #000000; font-weight: bold;">do</span>
		<span style="color: #000000; font-weight: bold;">if</span> color<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span><span style="color: #339933;">=</span>0 <span style="color: #000000; font-weight: bold;">then</span>
		<span style="color: #000000; font-weight: bold;">begin</span>
			color<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span><span style="color: #339933;">:=</span><span style="color: #cc66cc;">1</span>;
			dfs<span style="color: #009900;">&#40;</span>i<span style="color: #009900;">&#41;</span>;
		<span style="color: #000000; font-weight: bold;">end</span>;
	last<span style="color: #339933;">:=</span><span style="color: #cc66cc;">1</span>;
	<span style="color: #000000; font-weight: bold;">for</span> i<span style="color: #339933;">:=</span><span style="color: #cc66cc;">1</span> <span style="color: #000000; font-weight: bold;">to</span> n <span style="color: #000000; font-weight: bold;">do</span>
	<span style="color: #000000; font-weight: bold;">begin</span>
		<span style="color: #000000; font-weight: bold;">if</span> color<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span><span style="color: #339933;">=</span><span style="color: #cc66cc;">1</span> <span style="color: #000000; font-weight: bold;">then</span>
			<span style="color: #000066;">write</span><span style="color: #009900;">&#40;</span><span style="">'a '</span><span style="color: #009900;">&#41;</span>
		<span style="color: #000000; font-weight: bold;">else</span>
			<span style="color: #000066;">write</span><span style="color: #009900;">&#40;</span><span style="">'c '</span><span style="color: #009900;">&#41;</span>;
		inc<span style="color: #009900;">&#40;</span>s<span style="color: #009900;">&#91;</span>color<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span>0<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span>;
		s<span style="color: #009900;">&#91;</span>color<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span>s<span style="color: #009900;">&#91;</span>color<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span>0<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">:=</span>a<span style="color: #009900;">&#91;</span>i<span style="color: #009900;">&#93;</span>;
		<span style="color: #000000; font-weight: bold;">while</span> <span style="color: #009900;">&#40;</span>s<span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #339933;">,</span>s<span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #339933;">,</span>0<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">=</span>last<span style="color: #009900;">&#41;</span><span style="color: #000000; font-weight: bold;">or</span><span style="color: #009900;">&#40;</span>s<span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">2</span><span style="color: #339933;">,</span>s<span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">2</span><span style="color: #339933;">,</span>0<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">=</span>last<span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">do</span>
		<span style="color: #000000; font-weight: bold;">begin</span>
			<span style="color: #000000; font-weight: bold;">if</span> s<span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #339933;">,</span>s<span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #339933;">,</span>0<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">=</span>last <span style="color: #000000; font-weight: bold;">then</span>
			<span style="color: #000000; font-weight: bold;">begin</span>
				<span style="color: #000066;">write</span><span style="color: #009900;">&#40;</span><span style="">'b '</span><span style="color: #009900;">&#41;</span>;
				dec<span style="color: #009900;">&#40;</span>s<span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #339933;">,</span>0<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span>;
			<span style="color: #000000; font-weight: bold;">end</span>;
			<span style="color: #000000; font-weight: bold;">if</span> s<span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">2</span><span style="color: #339933;">,</span>s<span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">2</span><span style="color: #339933;">,</span>0<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">=</span>last <span style="color: #000000; font-weight: bold;">then</span>
			<span style="color: #000000; font-weight: bold;">begin</span>
				<span style="color: #000066;">write</span><span style="color: #009900;">&#40;</span><span style="">'d '</span><span style="color: #009900;">&#41;</span>;
				dec<span style="color: #009900;">&#40;</span>s<span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">2</span><span style="color: #339933;">,</span>0<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span>;
			<span style="color: #000000; font-weight: bold;">end</span>;
			inc<span style="color: #009900;">&#40;</span>last<span style="color: #009900;">&#41;</span>;
		<span style="color: #000000; font-weight: bold;">end</span>;
	<span style="color: #000000; font-weight: bold;">end</span>;
	close<span style="color: #009900;">&#40;</span>input<span style="color: #009900;">&#41;</span>;
	close<span style="color: #009900;">&#40;</span>output<span style="color: #009900;">&#41;</span>;
<span style="color: #000000; font-weight: bold;">end</span>.</pre></div></div>

<p>最后附上据说是<a href='http://blog.codebeta.org/wp-content/uploads/2008/11/noip2008.rar'>四川省的测试数据</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.codebeta.org/archives/post-123.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>几种常用的字符串Hash</title>
		<link>http://blog.codebeta.org/archives/post-120.html</link>
		<comments>http://blog.codebeta.org/archives/post-120.html#comments</comments>
		<pubDate>Fri, 14 Nov 2008 02:24:38 +0000</pubDate>
		<dc:creator>MRain</dc:creator>
		
		<category><![CDATA[OI]]></category>

		<category><![CDATA[Hash]]></category>

		<category><![CDATA[NOIP]]></category>

		<category><![CDATA[算法]]></category>

		<guid isPermaLink="false">http://blog.codebeta.org/?p=120</guid>
		<description><![CDATA[明天就NOIP了..
今天找到一堆常用的字符串Hash算法.贴出来分享+以后自己找也方便..
RS Hash:

function RSHash&#40;S: string&#41;: Cardinal;
var
  a, b: Cardinal;
  I: Integer;
begin
  Result := 0;
  a := 63689;
  b := 378551;
  f... ]]></description>
			<content:encoded><![CDATA[<p>明天就NOIP了..</p>
<p>今天找到一堆常用的字符串Hash算法.贴出来分享+以后自己找也方便..</p>
<p>RS Hash:</p>

<div class="wp_syntax"><div class="code"><pre class="pascal pascal" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> RSHash<span style="color: #009900;">&#40;</span>S<span style="color: #339933;">:</span> <span style="color: #000066; font-weight: bold;">string</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">:</span> Cardinal;
<span style="color: #000000; font-weight: bold;">var</span>
  a<span style="color: #339933;">,</span> b<span style="color: #339933;">:</span> Cardinal;
  I<span style="color: #339933;">:</span> <span style="color: #000066; font-weight: bold;">Integer</span>;
<span style="color: #000000; font-weight: bold;">begin</span>
  Result <span style="color: #339933;">:=</span> 0;
  a <span style="color: #339933;">:=</span> <span style="color: #cc66cc;">63689</span>;
  b <span style="color: #339933;">:=</span> <span style="color: #cc66cc;">378551</span>;
  <span style="color: #000000; font-weight: bold;">for</span> I <span style="color: #339933;">:=</span> <span style="color: #cc66cc;">1</span> <span style="color: #000000; font-weight: bold;">to</span> Length<span style="color: #009900;">&#40;</span>S<span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">do</span>
  <span style="color: #000000; font-weight: bold;">begin</span>
    Result <span style="color: #339933;">:=</span> Result <span style="color: #339933;">*</span> a <span style="color: #339933;">+</span> <span style="color: #000066;">Ord</span><span style="color: #009900;">&#40;</span>S<span style="color: #009900;">&#91;</span>I<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span>;
    a <span style="color: #339933;">:=</span> a <span style="color: #339933;">*</span> b;
  <span style="color: #000000; font-weight: bold;">end</span>;
  Result <span style="color: #339933;">:=</span> Result <span style="color: #000066;">and</span> $7FFFFFFF;
<span style="color: #000000; font-weight: bold;">end</span>;</pre></div></div>

<p>JS Hash</p>

<div class="wp_syntax"><div class="code"><pre class="pascal pascal" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> JSHash<span style="color: #009900;">&#40;</span>S<span style="color: #339933;">:</span> <span style="color: #000066; font-weight: bold;">string</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">:</span> Cardinal;
<span style="color: #000000; font-weight: bold;">var</span>
  I<span style="color: #339933;">:</span> <span style="color: #000066; font-weight: bold;">Integer</span>;
<span style="color: #000000; font-weight: bold;">begin</span>
  Result <span style="color: #339933;">:=</span> <span style="color: #cc66cc;">1315423911</span>;
  <span style="color: #000000; font-weight: bold;">for</span> I <span style="color: #339933;">:=</span> <span style="color: #cc66cc;">1</span> <span style="color: #000000; font-weight: bold;">to</span> Length<span style="color: #009900;">&#40;</span>S<span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">do</span>
  <span style="color: #000000; font-weight: bold;">begin</span>
    Result <span style="color: #339933;">:=</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span>Result <span style="color: #000000; font-weight: bold;">shl</span> <span style="color: #cc66cc;">5</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">+</span> <span style="color: #000066;">Ord</span><span style="color: #009900;">&#40;</span>S<span style="color: #009900;">&#91;</span>I<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">+</span> <span style="color: #009900;">&#40;</span>Result <span style="color: #000000; font-weight: bold;">shr</span> <span style="color: #cc66cc;">2</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">xor</span> Result;
  <span style="color: #000000; font-weight: bold;">end</span>;
  Result <span style="color: #339933;">:=</span> Result <span style="color: #000066;">and</span> $7FFFFFFF;
<span style="color: #000000; font-weight: bold;">end</span>;</pre></div></div>

<p>P.J.Weinberger Hash</p>

<div class="wp_syntax"><div class="code"><pre class="pascal pascal" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> PJWHash<span style="color: #009900;">&#40;</span>S<span style="color: #339933;">:</span> <span style="color: #000066; font-weight: bold;">string</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">:</span> Cardinal;
<span style="color: #000000; font-weight: bold;">var</span>
  OneEighth<span style="color: #339933;">,</span>
  ThreeQuarters<span style="color: #339933;">,</span>
  BitsInUnignedInt<span style="color: #339933;">,</span>
  HighBits<span style="color: #339933;">,</span>
  test<span style="color: #339933;">:</span> Cardinal;
  I<span style="color: #339933;">:</span> <span style="color: #000066; font-weight: bold;">Integer</span>;
<span style="color: #000000; font-weight: bold;">begin</span>
  Result <span style="color: #339933;">:=</span> 0;
  test   <span style="color: #339933;">:=</span> 0;
  BitsInUnignedInt <span style="color: #339933;">:=</span> SizeOf<span style="color: #009900;">&#40;</span>Cardinal<span style="color: #009900;">&#41;</span> <span style="color: #339933;">*</span> <span style="color: #cc66cc;">8</span>;
  ThreeQuarters    <span style="color: #339933;">:=</span> BitsInUnignedInt <span style="color: #339933;">*</span> <span style="color: #cc66cc;">3</span> <span style="color: #000000; font-weight: bold;">div</span> <span style="color: #cc66cc;">4</span>;
  OneEighth        <span style="color: #339933;">:=</span> BitsInUnignedInt <span style="color: #000000; font-weight: bold;">div</span> <span style="color: #cc66cc;">8</span>;
  HighBits         <span style="color: #339933;">:=</span> $FFFFFFFF <span style="color: #000000; font-weight: bold;">shl</span> <span style="color: #009900;">&#40;</span>BitsInUnignedInt <span style="color: #339933;">-</span> OneEighth<span style="color: #009900;">&#41;</span>;
  <span style="color: #000000; font-weight: bold;">for</span> I <span style="color: #339933;">:=</span> <span style="color: #cc66cc;">1</span> <span style="color: #000000; font-weight: bold;">to</span> Length<span style="color: #009900;">&#40;</span>S<span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">do</span>
  <span style="color: #000000; font-weight: bold;">begin</span>
    Result <span style="color: #339933;">:=</span> <span style="color: #009900;">&#40;</span>Result <span style="color: #000000; font-weight: bold;">shl</span> OneEighth<span style="color: #009900;">&#41;</span> <span style="color: #339933;">+</span> <span style="color: #000066;">Ord</span><span style="color: #009900;">&#40;</span>S<span style="color: #009900;">&#91;</span>I<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span>;
    test   <span style="color: #339933;">:=</span> Result <span style="color: #000066;">and</span> HighBits;
    <span style="color: #000000; font-weight: bold;">if</span> test &lt;&gt; 0 <span style="color: #000000; font-weight: bold;">then</span> Result <span style="color: #339933;">:=</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span>Result <span style="color: #000000; font-weight: bold;">xor</span> <span style="color: #009900;">&#40;</span>test <span style="color: #000000; font-weight: bold;">shr</span> ThreeQuarters<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #000066;">and</span> <span style="color: #000000; font-weight: bold;">not</span> HighBits<span style="color: #009900;">&#41;</span>;
  <span style="color: #000000; font-weight: bold;">end</span>;
  Result <span style="color: #339933;">:=</span> Result <span style="color: #000066;">and</span> $7FFFFFFF;
<span style="color: #000000; font-weight: bold;">end</span>;</pre></div></div>

<p>最普遍的 ELF Hash:</p>

<div class="wp_syntax"><div class="code"><pre class="pascal pascal" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> ELFHash<span style="color: #009900;">&#40;</span>S<span style="color: #339933;">:</span> <span style="color: #000066; font-weight: bold;">string</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">:</span> Cardinal;
<span style="color: #000000; font-weight: bold;">var</span>
  X<span style="color: #339933;">:</span> Cardinal;
  I<span style="color: #339933;">:</span> <span style="color: #000066; font-weight: bold;">Integer</span>;
<span style="color: #000000; font-weight: bold;">begin</span>
  Result <span style="color: #339933;">:=</span> 0;
  X <span style="color: #339933;">:=</span> 0;
  <span style="color: #000000; font-weight: bold;">for</span> I <span style="color: #339933;">:=</span> <span style="color: #cc66cc;">1</span> <span style="color: #000000; font-weight: bold;">to</span> Length<span style="color: #009900;">&#40;</span>S<span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">do</span>
  <span style="color: #000000; font-weight: bold;">begin</span>
    Result <span style="color: #339933;">:=</span> <span style="color: #009900;">&#40;</span>Result <span style="color: #000000; font-weight: bold;">shl</span> <span style="color: #cc66cc;">4</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">+</span> <span style="color: #000066;">Ord</span><span style="color: #009900;">&#40;</span>S<span style="color: #009900;">&#91;</span>I<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span>;
    X <span style="color: #339933;">:=</span> Result <span style="color: #000066;">and</span> $F0000000;
    <span style="color: #000000; font-weight: bold;">if</span> X &lt;&gt; 0 <span style="color: #000000; font-weight: bold;">then</span>
    <span style="color: #000000; font-weight: bold;">begin</span>
      Result <span style="color: #339933;">:=</span> Result <span style="color: #000000; font-weight: bold;">xor</span> <span style="color: #009900;">&#40;</span>X <span style="color: #000000; font-weight: bold;">shr</span> <span style="color: #cc66cc;">24</span><span style="color: #009900;">&#41;</span>;
      Result <span style="color: #339933;">:=</span> Result <span style="color: #000066;">and</span> <span style="color: #000000; font-weight: bold;">not</span> X;
    <span style="color: #000000; font-weight: bold;">end</span>;
  <span style="color: #000000; font-weight: bold;">end</span>;
  Result <span style="color: #339933;">:=</span> Result <span style="color: #000066;">and</span> $7FFFFFFF;
<span style="color: #000000; font-weight: bold;">end</span>;</pre></div></div>

<p>简单的BKDR Hash</p>

<div class="wp_syntax"><div class="code"><pre class="pascal pascal" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> BKDRHash<span style="color: #009900;">&#40;</span>S<span style="color: #339933;">:</span> <span style="color: #000066; font-weight: bold;">string</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">:</span> Cardinal;
<span style="color: #000000; font-weight: bold;">var</span>
  seed<span style="color: #339933;">:</span> Cardinal;
  I<span style="color: #339933;">:</span> <span style="color: #000066; font-weight: bold;">Integer</span>;
<span style="color: #000000; font-weight: bold;">begin</span>
  Result <span style="color: #339933;">:=</span> 0;
  seed   <span style="color: #339933;">:=</span> <span style="color: #cc66cc;">131</span>;  <span style="color: #666666; font-style: italic;">// 31 131 1313 13131 131313 etc..</span>
  <span style="color: #000000; font-weight: bold;">for</span> I <span style="color: #339933;">:=</span> <span style="color: #cc66cc;">1</span> <span style="color: #000000; font-weight: bold;">to</span> Length<span style="color: #009900;">&#40;</span>S<span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">do</span>
  <span style="color: #000000; font-weight: bold;">begin</span>
    Result <span style="color: #339933;">:=</span> Result <span style="color: #339933;">*</span> seed <span style="color: #339933;">+</span> <span style="color: #000066;">Ord</span><span style="color: #009900;">&#40;</span>S<span style="color: #009900;">&#91;</span>I<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span>;
  <span style="color: #000000; font-weight: bold;">end</span>;
  Result <span style="color: #339933;">:=</span> Result <span style="color: #000066;">and</span> $7FFFFFFF;
<span style="color: #000000; font-weight: bold;">end</span>;</pre></div></div>

<p>SDBM Hash</p>

<div class="wp_syntax"><div class="code"><pre class="pascal pascal" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> SDBMHash<span style="color: #009900;">&#40;</span>S<span style="color: #339933;">:</span> <span style="color: #000066; font-weight: bold;">string</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">:</span> Cardinal;
<span style="color: #000000; font-weight: bold;">var</span>
  I<span style="color: #339933;">:</span> <span style="color: #000066; font-weight: bold;">Integer</span>;
<span style="color: #000000; font-weight: bold;">begin</span>
  Result <span style="color: #339933;">:=</span> 0;
  <span style="color: #000000; font-weight: bold;">for</span> I <span style="color: #339933;">:=</span> <span style="color: #cc66cc;">1</span> <span style="color: #000000; font-weight: bold;">to</span> Length<span style="color: #009900;">&#40;</span>S<span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">do</span>
  <span style="color: #000000; font-weight: bold;">begin</span>
    Result <span style="color: #339933;">:=</span> <span style="color: #000066;">Ord</span><span style="color: #009900;">&#40;</span>S<span style="color: #009900;">&#91;</span>I<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">+</span> <span style="color: #009900;">&#40;</span>Result <span style="color: #000000; font-weight: bold;">shl</span> <span style="color: #cc66cc;">6</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">+</span> <span style="color: #009900;">&#40;</span>Result <span style="color: #000000; font-weight: bold;">shl</span> <span style="color: #cc66cc;">16</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">-</span> Result;
  <span style="color: #000000; font-weight: bold;">end</span>;
  Result <span style="color: #339933;">:=</span> Result <span style="color: #000066;">and</span> $7FFFFFFF;
<span style="color: #000000; font-weight: bold;">end</span>;</pre></div></div>

<p>DJB Hash</p>

<div class="wp_syntax"><div class="code"><pre class="pascal pascal" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> DJBHash<span style="color: #009900;">&#40;</span>S<span style="color: #339933;">:</span> <span style="color: #000066; font-weight: bold;">string</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">:</span> Cardinal;
<span style="color: #000000; font-weight: bold;">var</span>
  I<span style="color: #339933;">:</span> <span style="color: #000066; font-weight: bold;">Integer</span>;
<span style="color: #000000; font-weight: bold;">begin</span>
  Result <span style="color: #339933;">:=</span> <span style="color: #cc66cc;">5381</span>;
  <span style="color: #000000; font-weight: bold;">for</span> I <span style="color: #339933;">:=</span> <span style="color: #cc66cc;">1</span> <span style="color: #000000; font-weight: bold;">to</span> Length<span style="color: #009900;">&#40;</span>S<span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">do</span>
  <span style="color: #000000; font-weight: bold;">begin</span>
    Result <span style="color: #339933;">:=</span> Result <span style="color: #339933;">+</span> <span style="color: #009900;">&#40;</span>Result <span style="color: #000000; font-weight: bold;">shl</span> <span style="color: #cc66cc;">5</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">+</span> <span style="color: #000066;">Ord</span><span style="color: #009900;">&#40;</span>S<span style="color: #009900;">&#91;</span>I<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span>;
  <span style="color: #000000; font-weight: bold;">end</span>;
  Result <span style="color: #339933;">:=</span> Result <span style="color: #000066;">and</span> $7FFFFFFF;
<span style="color: #000000; font-weight: bold;">end</span>;</pre></div></div>

<p>AP Hash:</p>

<div class="wp_syntax"><div class="code"><pre class="pascal pascal" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> APHash<span style="color: #009900;">&#40;</span>S<span style="color: #339933;">:</span> <span style="color: #000066; font-weight: bold;">string</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">:</span> Cardinal;
<span style="color: #000000; font-weight: bold;">var</span>
  I<span style="color: #339933;">:</span> <span style="color: #000066; font-weight: bold;">Integer</span>;
<span style="color: #000000; font-weight: bold;">begin</span>
  Result <span style="color: #339933;">:=</span> 0;
  <span style="color: #000000; font-weight: bold;">for</span> I <span style="color: #339933;">:=</span> <span style="color: #cc66cc;">1</span> <span style="color: #000000; font-weight: bold;">to</span> Length<span style="color: #009900;">&#40;</span>S<span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">do</span>
  <span style="color: #000000; font-weight: bold;">begin</span>
    <span style="color: #000000; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>i <span style="color: #000066;">and</span> <span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span> &lt;&gt; 0 <span style="color: #000000; font-weight: bold;">then</span>
      Result <span style="color: #339933;">:=</span> Result <span style="color: #000000; font-weight: bold;">xor</span> <span style="color: #009900;">&#40;</span><span style="color: #009900;">&#40;</span>Result <span style="color: #000000; font-weight: bold;">shl</span> <span style="color: #cc66cc;">7</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">xor</span> <span style="color: #000066;">Ord</span><span style="color: #009900;">&#40;</span>S<span style="color: #009900;">&#91;</span>I<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">xor</span> <span style="color: #009900;">&#40;</span>Result <span style="color: #000000; font-weight: bold;">shr</span> <span style="color: #cc66cc;">3</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>
    <span style="color: #000000; font-weight: bold;">else</span>
      Result <span style="color: #339933;">:=</span> Result <span style="color: #000000; font-weight: bold;">xor</span> <span style="color: #009900;">&#40;</span><span style="color: #000000; font-weight: bold;">not</span> <span style="color: #009900;">&#40;</span>Result <span style="color: #000000; font-weight: bold;">shl</span> <span style="color: #cc66cc;">11</span><span style="color: #009900;">&#41;</span>  <span style="color: #000000; font-weight: bold;">xor</span> <span style="color: #000066;">Ord</span><span style="color: #009900;">&#40;</span>S<span style="color: #009900;">&#91;</span>I<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">xor</span> <span style="color: #009900;">&#40;</span>Result <span style="color: #000000; font-weight: bold;">shr</span> <span style="color: #cc66cc;">5</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>;
  <span style="color: #000000; font-weight: bold;">end</span>;
  Result <span style="color: #339933;">:=</span> Result <span style="color: #000066;">and</span> $7FFFFFFF;
<span style="color: #000000; font-weight: bold;">end</span>;</pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://blog.codebeta.org/archives/post-120.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Ubuntu 8.10 正式版镜像已经制作完成 正在分发</title>
		<link>http://blog.codebeta.org/archives/post-114.html</link>
		<comments>http://blog.codebeta.org/archives/post-114.html#comments</comments>
		<pubDate>Tue, 28 Oct 2008 13:20:17 +0000</pubDate>
		<dc:creator>MRain</dc:creator>
		
		<category><![CDATA[News中心]]></category>

		<category><![CDATA[Intrepid]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://blog.codebeta.org/?p=114</guid>
		<description><![CDATA[Ubuntu 8.10 (Intrepid Ibex) 是继 Ubuntu 8.04 这个长期支持版(LTS)后的第一个发行版。按照惯例 Ubuntu 新版的镜像将在正式发布日之前制作完成并向各地的镜像服务器进行分发相应的文件。经 OwnLinux 成员... ]]></description>
			<content:encoded><![CDATA[<blockquote><p>Ubuntu 8.10 (Intrepid Ibex) 是继 Ubuntu 8.04 这个长期支持版(LTS)后的第一个发行版。按照惯例 Ubuntu 新版的镜像将在正式发布日之前制作完成并向各地的镜像服务器进行分发相应的文件。经 OwnLinux 成员证实，Ubuntu 8.10 正式版镜像已经在向各地的镜像服务器进行分发了，ubuntu-8.10-desktop-i386.iso 的大小大概为 694.49 MB 。</p>
<p>不过，笔者声明本文并不是鼓励大家现在去下载这些正在分发的 Ubuntu 8.10 正式版镜像文件，需要注意的是如果大家现在都去下载（尤其是迅雷）这些Ubuntu 8.10 正式版镜像文件，这样会在极大的程度上影响 Ubuntu 8.10 正式版镜像文件向各地的镜像服务分发的进度，甚至可能导致 Ubuntu 8.10 不能如期发布，并影响发布后的对巨大下载流量的分压能力。并希望 Ubuntu 爱好者们先不要提供 Ubuntu 8.10 正式版镜像的分发地址。</p></blockquote>
<p>版权: <a href="http://ownlinux.cn">OwnLinux.cn</a> —发布Linux/Ubuntu最新资讯，提供Linux/Ubuntu入门使用指南，帮助Linux新手快速提高</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.codebeta.org/archives/post-114.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>2008.10.24 寿山茶场</title>
		<link>http://blog.codebeta.org/archives/post-112.html</link>
		<comments>http://blog.codebeta.org/archives/post-112.html#comments</comments>
		<pubDate>Sat, 25 Oct 2008 03:02:07 +0000</pubDate>
		<dc:creator>MRain</dc:creator>
		
		<category><![CDATA[闲事]]></category>

		<category><![CDATA[社会实践]]></category>

		<guid isPermaLink="false">http://blog.codebeta.org/?p=112</guid>
		<description><![CDATA[社会实践最后一站,寿山茶场..
走到半路车子竟然被交警乱扣留了..说堵车...!? 旁边的车一辆辆开心的过去了...
总算到了..下点儿小雨.雾很大..山上风景很好..尤其是在大雾的天气.更有种朦胧的... ]]></description>
			<content:encoded><![CDATA[<p>社会实践最后一站,寿山茶场..</p>
<p>走到半路车子竟然被交警乱扣留了..说堵车...!? 旁边的车一辆辆开心的过去了...</p>
<p>总算到了..下点儿小雨.雾很大..山上风景很好..尤其是在大雾的天气.更有种朦胧的美.</p><div class="ngg-galleryoverview" id="ngg-gallery-5"><div class="slideshowlink"><a class="slideshowlink" href="/feed?show=slide">[Show as slideshow]</a></div><div id="ngg-image-62" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb62" href="http://blog.codebeta.org/wp-content/gallery/20081024/IMG00059.jpg" title="车上拍的..雾好大." class="thickbox" rel="20081024" ><img title="IMG00059.jpg" alt="IMG00059.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081024/thumbs/thumbs_IMG00059.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-63" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb63" href="http://blog.codebeta.org/wp-content/gallery/20081024/IMG00060.jpg" title="下车了..雾还是很大..隐约看得到前面的河" class="thickbox" rel="20081024" ><img title="IMG00060.jpg" alt="IMG00060.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081024/thumbs/thumbs_IMG00060.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-64" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb64" href="http://blog.codebeta.org/wp-content/gallery/20081024/IMG00061.jpg" title="后面的风景...貌似曝光率高了些." class="thickbox" rel="20081024" ><img title="IMG00061.jpg" alt="IMG00061.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081024/thumbs/thumbs_IMG00061.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-65" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb65" href="http://blog.codebeta.org/wp-content/gallery/20081024/IMG00062.jpg" title="某间小屋子.." class="thickbox" rel="20081024" ><img title="IMG00062.jpg" alt="IMG00062.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081024/thumbs/thumbs_IMG00062.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-66" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb66" href="http://blog.codebeta.org/wp-content/gallery/20081024/IMG00064.jpg" title="我已经看不清那河了.." class="thickbox" rel="20081024" ><img title="IMG00064.jpg" alt="IMG00064.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081024/thumbs/thumbs_IMG00064.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-67" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb67" href="http://blog.codebeta.org/wp-content/gallery/20081024/IMG00065.jpg" title="谁能猜到底下有河.?" class="thickbox" rel="20081024" ><img title="IMG00065.jpg" alt="IMG00065.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081024/thumbs/thumbs_IMG00065.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-68" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb68" href="http://blog.codebeta.org/wp-content/gallery/20081024/IMG00067.jpg" title="还是那间小屋子..这下完美些了." class="thickbox" rel="20081024" ><img title="IMG00067.jpg" alt="IMG00067.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081024/thumbs/thumbs_IMG00067.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-69" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb69" href="http://blog.codebeta.org/wp-content/gallery/20081024/IMG00068.jpg" title="山上往下看..雾好大.." class="thickbox" rel="20081024" ><img title="IMG00068.jpg" alt="IMG00068.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081024/thumbs/thumbs_IMG00068.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-70" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb70" href="http://blog.codebeta.org/wp-content/gallery/20081024/IMG00069.jpg" title="烧煤的.." class="thickbox" rel="20081024" ><img title="IMG00069.jpg" alt="IMG00069.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081024/thumbs/thumbs_IMG00069.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-71" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb71" href="http://blog.codebeta.org/wp-content/gallery/20081024/IMG00071.jpg" title="出发去茶园了." class="thickbox" rel="20081024" ><img title="IMG00071.jpg" alt="IMG00071.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081024/thumbs/thumbs_IMG00071.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-72" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb72" href="http://blog.codebeta.org/wp-content/gallery/20081024/IMG00072.jpg" title="路上.." class="thickbox" rel="20081024" ><img title="IMG00072.jpg" alt="IMG00072.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081024/thumbs/thumbs_IMG00072.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-73" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb73" href="http://blog.codebeta.org/wp-content/gallery/20081024/IMG00073.jpg" title="谁能想到我们在过河.?" class="thickbox" rel="20081024" ><img title="IMG00073.jpg" alt="IMG00073.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081024/thumbs/thumbs_IMG00073.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-74" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb74" href="http://blog.codebeta.org/wp-content/gallery/20081024/IMG00074.jpg" title="桥上.." class="thickbox" rel="20081024" ><img title="IMG00074.jpg" alt="IMG00074.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081024/thumbs/thumbs_IMG00074.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-75" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb75" href="http://blog.codebeta.org/wp-content/gallery/20081024/IMG00077.jpg" title="路边有石碑.." class="thickbox" rel="20081024" ><img title="IMG00077.jpg" alt="IMG00077.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081024/thumbs/thumbs_IMG00077.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-76" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb76" href="http://blog.codebeta.org/wp-content/gallery/20081024/IMG00079.jpg" title="茶田." class="thickbox" rel="20081024" ><img title="IMG00079.jpg" alt="IMG00079.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081024/thumbs/thumbs_IMG00079.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-77" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb77" href="http://blog.codebeta.org/wp-content/gallery/20081024/IMG00080.jpg" title="依然是." class="thickbox" rel="20081024" ><img title="IMG00080.jpg" alt="IMG00080.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081024/thumbs/thumbs_IMG00080.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-78" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb78" href="http://blog.codebeta.org/wp-content/gallery/20081024/IMG00082.jpg" title="路边的野草." class="thickbox" rel="20081024" ><img title="IMG00082.jpg" alt="IMG00082.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081024/thumbs/thumbs_IMG00082.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-79" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb79" href="http://blog.codebeta.org/wp-content/gallery/20081024/IMG00083.jpg" title="神仙姐姐...抓到了." class="thickbox" rel="20081024" ><img title="IMG00083.jpg" alt="IMG00083.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081024/thumbs/thumbs_IMG00083.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-80" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb80" href="http://blog.codebeta.org/wp-content/gallery/20081024/IMG00084.jpg" title="回去的路上..天放晴了" class="thickbox" rel="20081024" ><img title="IMG00084.jpg" alt="IMG00084.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081024/thumbs/thumbs_IMG00084.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-81" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb81" href="http://blog.codebeta.org/wp-content/gallery/20081024/IMG00085.jpg" title="又来到桥上..与前面那图对比下吧." class="thickbox" rel="20081024" ><img title="IMG00085.jpg" alt="IMG00085.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081024/thumbs/thumbs_IMG00085.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
</div>
<div class='ngg-navigation'><span>1</span><a class="page-numbers" href="/feed?nggpage=2">2</a><a class="next" href="/feed?nggpage=2">&#9658;</a></div>]]></content:encoded>
			<wfw:commentRss>http://blog.codebeta.org/archives/post-112.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>2008.10.21 可门火电站</title>
		<link>http://blog.codebeta.org/archives/post-105.html</link>
		<comments>http://blog.codebeta.org/archives/post-105.html#comments</comments>
		<pubDate>Tue, 21 Oct 2008 12:39:50 +0000</pubDate>
		<dc:creator>MRain</dc:creator>
		
		<category><![CDATA[闲事]]></category>

		<category><![CDATA[社会实践]]></category>

		<guid isPermaLink="false">http://blog.codebeta.org/?p=105</guid>
		<description><![CDATA[社会实践第二站..
坐车来回5个小时..参观只花不到半个小时...不知道该说什么了..
进去要关手机...郁闷的拍不了里面的..... ]]></description>
			<content:encoded><![CDATA[<p>社会实践第二站..</p>
<p>坐车来回5个小时..参观只花不到半个小时...不知道该说什么了..</p>
<p>进去要关手机...郁闷的拍不了里面的..</p><div class="ngg-galleryoverview" id="ngg-gallery-4"><div class="slideshowlink"><a class="slideshowlink" href="/feed?show=slide">[Show as slideshow]</a></div><div id="ngg-image-49" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb49" href="http://blog.codebeta.org/wp-content/gallery/20081021/IMG00043.jpg" title="车窗照..远景火电站..白烟是水蒸气." class="thickbox" rel="20081021" ><img title="IMG00043.jpg" alt="IMG00043.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081021/thumbs/thumbs_IMG00043.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-50" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb50" href="http://blog.codebeta.org/wp-content/gallery/20081021/IMG00044.jpg" title="远远的某山.." class="thickbox" rel="20081021" ><img title="IMG00044.jpg" alt="IMG00044.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081021/thumbs/thumbs_IMG00044.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-51" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb51" href="http://blog.codebeta.org/wp-content/gallery/20081021/IMG00045.jpg" title="下车了.员工宿舍...这个条件不错." class="thickbox" rel="20081021" ><img title="IMG00045.jpg" alt="IMG00045.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081021/thumbs/thumbs_IMG00045.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-52" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb52" href="http://blog.codebeta.org/wp-content/gallery/20081021/IMG00046.jpg" title="继续员工宿舍" class="thickbox" rel="20081021" ><img title="IMG00046.jpg" alt="IMG00046.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081021/thumbs/thumbs_IMG00046.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-53" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb53" href="http://blog.codebeta.org/wp-content/gallery/20081021/IMG00047.jpg" title="远景火电站." class="thickbox" rel="20081021" ><img title="IMG00047.jpg" alt="IMG00047.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081021/thumbs/thumbs_IMG00047.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-54" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb54" href="http://blog.codebeta.org/wp-content/gallery/20081021/IMG00048.jpg" title="进食堂了...不过没饭吃.." class="thickbox" rel="20081021" ><img title="IMG00048.jpg" alt="IMG00048.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081021/thumbs/thumbs_IMG00048.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-55" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb55" href="http://blog.codebeta.org/wp-content/gallery/20081021/IMG00050.jpg" title="全民娱乐.." class="thickbox" rel="20081021" ><img title="IMG00050.jpg" alt="IMG00050.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081021/thumbs/thumbs_IMG00050.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-56" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb56" href="http://blog.codebeta.org/wp-content/gallery/20081021/IMG00051.jpg" title="抓拍无敌.." class="thickbox" rel="20081021" ><img title="IMG00051.jpg" alt="IMG00051.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081021/thumbs/thumbs_IMG00051.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-57" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb57" href="http://blog.codebeta.org/wp-content/gallery/20081021/IMG00052.jpg" title="郁闷的过头了..在里面强制关机..出来等开机后就过头了.." class="thickbox" rel="20081021" ><img title="IMG00052.jpg" alt="IMG00052.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081021/thumbs/thumbs_IMG00052.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-58" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb58" href="http://blog.codebeta.org/wp-content/gallery/20081021/IMG00053.jpg" title="煤箱..2个这样的煤桶可以维持10天发电." class="thickbox" rel="20081021" ><img title="IMG00053.jpg" alt="IMG00053.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081021/thumbs/thumbs_IMG00053.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-59" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb59" href="http://blog.codebeta.org/wp-content/gallery/20081021/IMG00055.jpg" title="篮球场+远景.." class="thickbox" rel="20081021" ><img title="IMG00055.jpg" alt="IMG00055.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081021/thumbs/thumbs_IMG00055.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-60" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb60" href="http://blog.codebeta.org/wp-content/gallery/20081021/IMG00056.jpg" title="足球场+离开前的休息.." class="thickbox" rel="20081021" ><img title="IMG00056.jpg" alt="IMG00056.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081021/thumbs/thumbs_IMG00056.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-61" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb61" href="http://blog.codebeta.org/wp-content/gallery/20081021/IMG00057.jpg" title="离开前再来个食堂照." class="thickbox" rel="20081021" ><img title="IMG00057.jpg" alt="IMG00057.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081021/thumbs/thumbs_IMG00057.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
</div>
<div class='ngg-clear'></div>
]]></content:encoded>
			<wfw:commentRss>http://blog.codebeta.org/archives/post-105.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>2008.10.20 水口水电站</title>
		<link>http://blog.codebeta.org/archives/post-103.html</link>
		<comments>http://blog.codebeta.org/archives/post-103.html#comments</comments>
		<pubDate>Mon, 20 Oct 2008 12:22:42 +0000</pubDate>
		<dc:creator>MRain</dc:creator>
		
		<category><![CDATA[闲事]]></category>

		<category><![CDATA[社会实践]]></category>

		<guid isPermaLink="false">http://blog.codebeta.org/?p=103</guid>
		<description><![CDATA[社会实践第一站.
地点闽清水口..某个水电站.
用的是亲爱的BlackBerry 8100...130万像素效果这样已经不错了.
前几张是在车里透过车窗照的.效果有影响..以及拍摄远景不行..... ]]></description>
			<content:encoded><![CDATA[<p>社会实践第一站.</p>
<p>地点闽清水口..某个水电站.</p>
<p>用的是亲爱的BlackBerry 8100...130万像素效果这样已经不错了.</p>
<p>前几张是在车里透过车窗照的.效果有影响..以及拍摄远景不行..</p><div class="ngg-galleryoverview" id="ngg-gallery-3"><div class="slideshowlink"><a class="slideshowlink" href="/feed?show=slide">[Show as slideshow]</a></div><div id="ngg-image-48" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb48" href="http://blog.codebeta.org/wp-content/gallery/20081020/IMG00040.jpg" title="拉近点儿..体现落差." class="thickbox" rel="20081020" ><img title="IMG00040.jpg" alt="IMG00040.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081020/thumbs/thumbs_IMG00040.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-47" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb47" href="http://blog.codebeta.org/wp-content/gallery/20081020/IMG00039.jpg" title="中间那层绿绿的是船只的&quot;电梯&quot;..(好多水葫芦..)" class="thickbox" rel="20081020" ><img title="IMG00039.jpg" alt="IMG00039.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081020/thumbs/thumbs_IMG00039.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-46" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb46" href="http://blog.codebeta.org/wp-content/gallery/20081020/IMG00038.jpg" title="&quot;偷窥&quot;别人家..?" class="thickbox" rel="20081020" ><img title="IMG00038.jpg" alt="IMG00038.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081020/thumbs/thumbs_IMG00038.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-45" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb45" href="http://blog.codebeta.org/wp-content/gallery/20081020/IMG00037.jpg" title="船闸里的运沙船...以及..水葫芦.." class="thickbox" rel="20081020" ><img title="IMG00037.jpg" alt="IMG00037.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081020/thumbs/thumbs_IMG00037.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-44" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb44" href="http://blog.codebeta.org/wp-content/gallery/20081020/IMG00036.jpg" title="泄洪口前景.." class="thickbox" rel="20081020" ><img title="IMG00036.jpg" alt="IMG00036.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081020/thumbs/thumbs_IMG00036.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-43" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb43" href="http://blog.codebeta.org/wp-content/gallery/20081020/IMG00035.jpg" title="泄洪口..." class="thickbox" rel="20081020" ><img title="IMG00035.jpg" alt="IMG00035.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081020/thumbs/thumbs_IMG00035.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-42" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb42" href="http://blog.codebeta.org/wp-content/gallery/20081020/IMG00034.jpg" title="泄洪口 with 水葫芦~~" class="thickbox" rel="20081020" ><img title="IMG00034.jpg" alt="IMG00034.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081020/thumbs/thumbs_IMG00034.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-41" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb41" href="http://blog.codebeta.org/wp-content/gallery/20081020/IMG00033.jpg" title="大坝上往前照..可以看到来时候的路" class="thickbox" rel="20081020" ><img title="IMG00033.jpg" alt="IMG00033.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081020/thumbs/thumbs_IMG00033.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-40" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb40" href="http://blog.codebeta.org/wp-content/gallery/20081020/IMG00032.jpg" title="据说是中国(还是福建.?)最大的人工平湖...怎么还是有水葫芦.." class="thickbox" rel="20081020" ><img title="IMG00032.jpg" alt="IMG00032.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081020/thumbs/thumbs_IMG00032.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-39" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb39" href="http://blog.codebeta.org/wp-content/gallery/20081020/IMG00031.jpg" title="远远的某座桥..可惜手机拍远景不行.." class="thickbox" rel="20081020" ><img title="IMG00031.jpg" alt="IMG00031.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081020/thumbs/thumbs_IMG00031.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-38" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb38" href="http://blog.codebeta.org/wp-content/gallery/20081020/IMG00030.jpg" title="抓拍万岁..." class="thickbox" rel="20081020" ><img title="IMG00030.jpg" alt="IMG00030.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081020/thumbs/thumbs_IMG00030.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-37" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb37" href="http://blog.codebeta.org/wp-content/gallery/20081020/IMG00029.jpg" title="远处某山..无聊所摄.." class="thickbox" rel="20081020" ><img title="IMG00029.jpg" alt="IMG00029.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081020/thumbs/thumbs_IMG00029.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-36" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb36" href="http://blog.codebeta.org/wp-content/gallery/20081020/IMG00028.jpg" title="专门给水葫芦的.." class="thickbox" rel="20081020" ><img title="IMG00028.jpg" alt="IMG00028.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081020/thumbs/thumbs_IMG00028.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-35" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb35" href="http://blog.codebeta.org/wp-content/gallery/20081020/IMG00027.jpg" title="还是水葫芦.." class="thickbox" rel="20081020" ><img title="IMG00027.jpg" alt="IMG00027.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081020/thumbs/thumbs_IMG00027.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-34" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb34" href="http://blog.codebeta.org/wp-content/gallery/20081020/IMG00026.jpg" title="大坝上往下看..好高.." class="thickbox" rel="20081020" ><img title="IMG00026.jpg" alt="IMG00026.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081020/thumbs/thumbs_IMG00026.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-33" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb33" href="http://blog.codebeta.org/wp-content/gallery/20081020/IMG00025.jpg" title="大坝上.." class="thickbox" rel="20081020" ><img title="IMG00025.jpg" alt="IMG00025.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081020/thumbs/thumbs_IMG00025.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-32" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb32" href="http://blog.codebeta.org/wp-content/gallery/20081020/IMG00024.jpg" title="想拍下大坝的..有人乱入." class="thickbox" rel="20081020" ><img title="IMG00024.jpg" alt="IMG00024.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081020/thumbs/thumbs_IMG00024.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-31" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb31" href="http://blog.codebeta.org/wp-content/gallery/20081020/IMG00023.jpg" title="总算快下车了...给头盔来个特写." class="thickbox" rel="20081020" ><img title="IMG00023.jpg" alt="IMG00023.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081020/thumbs/thumbs_IMG00023.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-30" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb30" href="http://blog.codebeta.org/wp-content/gallery/20081020/IMG00022.jpg" title="MaoShan神牛..想删的..他极力留下来.." class="thickbox" rel="20081020" ><img title="IMG00022.jpg" alt="IMG00022.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081020/thumbs/thumbs_IMG00022.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
<div id="ngg-image-29" class="ngg-gallery-thumbnail-box ">
	<div class="ngg-gallery-thumbnail"  >
	<a id="thumb29" href="http://blog.codebeta.org/wp-content/gallery/20081020/IMG00020.jpg" title="某舍友..抓拍万岁." class="thickbox" rel="20081020" ><img title="IMG00020.jpg" alt="IMG00020.jpg" src="http://blog.codebeta.org/wp-content/gallery/20081020/thumbs/thumbs_IMG00020.jpg" style="width:100px; height:75px;" /></a>
</div>
</div>
</div>
<div class='ngg-navigation'><span>1</span><a class="page-numbers" href="/feed?nggpage=2">2</a><a class="next" href="/feed?nggpage=2">&#9658;</a></div>]]></content:encoded>
			<wfw:commentRss>http://blog.codebeta.org/archives/post-103.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>NOIP2008 提高组 Pascal 语言 初赛卷答案</title>
		<link>http://blog.codebeta.org/archives/post-92.html</link>
		<comments>http://blog.codebeta.org/archives/post-92.html#comments</comments>
		<pubDate>Sat, 18 Oct 2008 11:49:08 +0000</pubDate>
		<dc:creator>MRain</dc:creator>
		
		<category><![CDATA[OI]]></category>

		<category><![CDATA[NOIP]]></category>

		<category><![CDATA[Pascal]]></category>

		<guid isPermaLink="false">http://blog.codebeta.org/?p=92</guid>
		<description><![CDATA[一、单项选择题：（每题1.5分）
1. C      2. A      3. B      4. C      5. B
6. D      7. D      8. E      9. B      10. C
二、 不定项选择题 （共10题，每题1.5分，共计15分。每题正... ]]></description>
			<content:encoded><![CDATA[<p>一、单项选择题：（每题1.5分）<br />
1. C      2. A      3. B      4. C      5. B<br />
6. D      7. D      8. E      9. B      10. C<br />
二、 不定项选择题 （共10题，每题1.5分，共计15分。每题正确答案的个数大于或等于1。多选或少选均不得分）。<br />
11. ABD   12. AC                13. BC    14. B            15. ABC<br />
16. ABD   17. BCD    18. ABC   19. ACD   20. ABCD<br />
三、问题求解：（共2题，每题5分，共计10分）<br />
1．7<br />
2．3060<br />
四、阅读程序写结果（共4题，每题8分，共计32分）<br />
1. 23 （信心题）<br />
2. 1,3,2 (简单递归)<br />
3. 132/213/231/312/321/ （全排列）<br />
4. defghijxyzabc/hfizxjaybcccc （字符串替换）<br />
五．完善程序 (前6空，每空3分，后5空，每空2分，共28分)<br />
（说明：以下各程序填空可能还有一些等价的写法，各省可请本省专家审定和上机验证，不一定上报科学委员会审查）<br />
1.        ① a[left]<br />
② a[j] &lt; value (或a[j] &lt;= value)<br />
③ a[i] &gt; value （或a[i] &gt;= value）<br />
④ a[i] := value;<br />
⑤ i,right,n-i+1<br />
⑥ FindKth(left, i, n)</p>
<p>2.<br />
① inc(j); (或者j := j+1;)<br />
② a[i,j] &gt; k<br />
③ a[i,j] &lt; k<br />
④ answerx := i;<br />
⑤ answery := j;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.codebeta.org/archives/post-92.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>25日热门新闻</title>
		<link>http://blog.codebeta.org/archives/post-86.html</link>
		<comments>http://blog.codebeta.org/archives/post-86.html#comments</comments>
		<pubDate>Thu, 25 Sep 2008 11:06:13 +0000</pubDate>
		<dc:creator>MRain</dc:creator>
		
		<category><![CDATA[News中心]]></category>

		<guid isPermaLink="false">http://blog.codebeta.org/?p=86</guid>
		<description><![CDATA[http://cache.baidu.com/c?m=9d78d513d9d437ad4f9c94697d66c0156a4381132ba6a6020bde8449e3732d475016e7ac56540770a3d27d1716d9494b9a802102441451b08cc9f84ad8ac935838f92d23061b913115c46eaadf01659f2fca1cafed0ee6c9ed2fcff99792c8542480085920c7a3d70d4603ca18a1496efef... ]]></description>
			<content:encoded><![CDATA[<p><a href="http://cache.baidu.com/c?m=9d78d513d9d437ad4f9c94697d66c0156a4381132ba6a6020bde8449e3732d475016e7ac56540770a3d27d1716d9494b9a802102441451b08cc9f84ad8ac935838f92d23061b913115c46eaadf01659f2fca1cafed0ee6c9ed2fcff99792c8542480085920c7a3d70d4603ca18a1496efef9c216085f12b8e72765895b7c349f245de71aa5a665324196f1a95f4ec028d563179db835c76454ea&amp;p=ce759a4688904ead05a9df6d7f&amp;user=baidu" target="_blank">http://cache.baidu.com/c?m=9d78d513d9d437ad4f9c94697d66c0156a4381132ba6a6020bde8449e3732d475016e7ac56540770a3d27d1716d9494b9a802102441451b08cc9f84ad8ac935838f92d23061b913115c46eaadf01659f2fca1cafed0ee6c9ed2fcff99792c8542480085920c7a3d70d4603ca18a1496efef9c216085f12b8e72765895b7c349f245de71aa5a665324196f1a95f4ec028d563179db835c76454ea&amp;p=ce759a4688904ead05a9df6d7f&amp;user=baidu</a></p>
<blockquote>
<table border="0" cellspacing="0" cellpadding="0" width="600">
<tbody>
<tr>
<td class="txt18" colspan="2" height="66" align="center">
<div id="Title"></div>
<div><strong><span class="PreviewTitle">太平洋上夜未眠 神七飞船第30圈测控侧记</span></strong></div>
</td>
</tr>
<tr>
<td colspan="2" height="22" align="center">2008年09月25日 09:04:58              　来源：<span style="color: #000066;">新华网</span></td>
</tr>
<tr bgcolor="#000000">
<td colspan="2" align="center"><img src="http://imgs.xinhuanet.com/icon/xilan/blank.gif" alt="" width="1" height="1" /></td>
</tr>
<tr bgcolor="#ffffff">
<td colspan="2" height="2" align="center"><img src="http://imgs.xinhuanet.com/icon/xilan/blank.gif" alt="" width="1" height="1" /></td>
</tr>
<tr bgcolor="#003483">
<td class="hei12" width="344" height="26" align="center" bgcolor="#4372ae">
<div><span style="color: #ffffff;">【字号</span> <a class="hei12" href="http://news.xinhuanet.com/mil/2008-09/25/content_10107048.htm#"><span style="color: #ffffff;">大</span></a> <a class="hei12" href="http://news.xinhuanet.com/mil/2008-09/25/content_10107048.htm#"><span style="color: #ffffff;">中</span></a> <a class="hei12" href="http://news.xinhuanet.com/mil/2008-09/25/content_10107048.htm#"><span style="color: #ffffff;">小</span></a><span style="color: #ffffff;">】</span> <span style="color: #ffffff;">【</span><a class="hei12" name="talkurl" href="http://comments.xinhuanet.com/comment?url=?" target="_blank"><span style="color: #ffffff;">留言</span></a><span style="color: #ffffff;">】</span> <span style="color: #ffffff;">【</span><a class="hei12" href="javascript:doPrint();"><span style="color: #ffffff;">打印</span></a><span style="color: #ffffff;">】</span> <span style="color: #ffffff;">【</span><a class="hei12" href="javascript:window.close();"><span style="color: #ffffff;">关闭</span></a><span style="color: #ffffff;">】</span></div>
</td>
<td class="hei12" width="300" height="20" bgcolor="#4372ae">
<table class="hei12" style="height: 26px;" border="0" cellspacing="0" cellpadding="0" width="290">
<tbody>
<tr>
<td class="navy" width="81"><span style="color: #ffffff;">【Email推荐：</span></td>
<td class="navy" width="209" valign="middle">
<input style="width: 100px; height: 16px;" name="FriendEmail2" type="text" />
<input style="height: 18px;" name="Subject2" type="submit" value="提交" />
<input name="Context2" type="hidden" /> <span style="color: #ffffff;">】</span></td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="100%" height="18"></td>
</tr>
</tbody>
</table>
<p><span> </span></p>
<p align="center"><span><img src="http://news.xinhuanet.com/mil/2008-09/25/xinsrc_0920905250905093187853.jpg" border="0" alt="" /> </span></p>
<p align="center"><span><span style="font-family: 楷体_GB2312; color: #000080;">远望一号[资料图片]</span> </span></p>
<p><span> <a name="baidusnap0"></a><strong style="color: black; background-color: #ffff66;">新华网远望一号27日电</strong>（记者 吴登峰 梅世雄 王玉山）27日午夜，太平洋上夜未眠。 </span></p>
<p><span> 20000多吨的远望一号航天测量船，如同一叶被扣在&quot;碗底&quot;的扁舟，随着绵延的涌浪高低起伏。 </span></p>
<p><span> 这是远望一号船在大海上度过的第27个夜晚。27天来，远望一号船在远离祖国的茫茫大洋上，战风斗浪、风雨兼程，与4艘姊妹船一起在天地间建立起了一条实时、畅通的数据通道，把3名航天员与祖国紧密联系在一起。 </span></p>
<p><span> 30分钟后，在太空中飞行30圈的神舟七号飞船将第六次飞抵&quot;远望一号&quot;上空。在10分多钟的时间里，航天员将完成轨道舱复压确认、脱下航天服等动作。 </span></p>
<p><span> 这，是航天员从轨道舱进入返回舱的关键时段之一。 </span></p>
<p><span> 由于飞船绕地球飞行轨迹与地球转动角度相互变化的原因，其他测控站难以在这一时段 对飞船实施测控，任务将由远望一号船独立完成。能否在这段时间内实时准确地把对飞船的测量与通信数据传回指控中心，以及把指控中心的遥控指令与数据发送给 飞船，关系到航天员出舱活动的成败。 </span></p>
<p><span> &quot;一级测量部署！&quot;号令一下，船舱内，各机房数不清的信号灯交相辉映，一排排显示屏上不断跳动着各种数据，上百名科技人员紧盯着屏幕，不放过丝毫变化；船体两侧，一对四米长的减摇鳍减缓缓伸出，使远望号如鲲鹏展翅般支撑在洋面上。 </span></p>
<p><span> USB雷达机房，全船测控的核心地带。 </span></p>
<p><span> &quot;5分钟准备！天线指向等待点。&quot; </span></p>
<p><span> &quot;明白！&quot; </span></p>
<p><span> 主操作手周兴国身体紧贴着操作台，轻推操纵杆，甲板上巍峨的雷达天线缓缓转动到飞船出现的方向。远望号巨大的船体随着涌浪起伏、摇摆，但巨大的天线却始终指向一个方向，紧盯着远方的地平线，纹丝不动。 </span></p>
<p><span> &quot;1分钟准备！&quot; </span></p>
<p><span> &quot;嘀嗒、嘀嗒……&quot;秒钟每次跳动，都使空气更加凝重。 </span></p>
<p><span> 突然，屏幕上一道亮线一晃而过，紧接着一个亮点窜入屏幕。随着周兴国几个干脆漂亮的动作，一个亮点被稳稳地&quot;钉&quot;在屏幕中心。 </span></p>
<p><span> &quot;长江一号发现目标！&quot; </span></p>
<p><span> &quot;长江一号双捕完成！&quot; </span></p>
<p><span> 调度员坚定的报告声，打破了全船的沉寂。此时，比预定捕获目标时间提前了12秒钟。 </span></p>
<p><span> &quot;座舱舱总压正常！&quot; </span></p>
<p><span> &quot;座舱氧分压正常！&quot; </span></p>
<p><span> 飞船内的一幅幅画面、一行行数据，随着电波飞向遥远的祖国。 </span></p>
<p><span> &quot;复压阀关，轨道舱已复压至40千帕，报告完毕！&quot;航天员的声音如在耳边，清晰可闻。 </span></p>
<p><span> &quot;明白！&quot;万里之外，指挥员的声音，铿锵有力，振奋人心。 </span></p>
<p><span> 10多分钟后，飞船重新消失在地平线下。热烈的掌声、激动的欢呼声划破夜空，在寂静的太平洋激荡徘徊。</span></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.codebeta.org/archives/post-86.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>无题</title>
		<link>http://blog.codebeta.org/archives/post-84.html</link>
		<comments>http://blog.codebeta.org/archives/post-84.html#comments</comments>
		<pubDate>Thu, 25 Sep 2008 05:32:48 +0000</pubDate>
		<dc:creator>MRain</dc:creator>
		
		<category><![CDATA[心想]]></category>

		<guid isPermaLink="false">http://blog.codebeta.org/?p=84</guid>
		<description><![CDATA[刚开始他们来抓共产党人，我没有站出来说话，因为我不是共产党员；接着他们又来抓社会党人和工会会员，我没有出来说话，因为我两者都不是；后来他们来抓犹太人，我还是没有出来说话... ]]></description>
			<content:encoded><![CDATA[<blockquote><p>刚开始他们来抓共产党人，我没有站出来说话，因为我不是共产党员；接着他们又来抓社会党人和工会会员，我没有出来说话，因为我两者都不是；后来他们来抓犹太人，我还是没有出来说话，因为我不是犹太人；最后当他们来抓我的时候，已经没人能站出来为我说话了。</p>
<p><span id="currentStatus" class="currentStatus">我们体制出了问题，一般是先瞒、瞒不了骗、骗不了就承认一部分，然后撤几个官员了事，最后宣传包装成一件功劳。  --我们就是体制<br />
</span></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.codebeta.org/archives/post-84.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>2周以来</title>
		<link>http://blog.codebeta.org/archives/post-81.html</link>
		<comments>http://blog.codebeta.org/archives/post-81.html#comments</comments>
		<pubDate>Sat, 13 Sep 2008 07:48:16 +0000</pubDate>
		<dc:creator>MRain</dc:creator>
		
		<category><![CDATA[闲事]]></category>

		<guid isPermaLink="false">http://blog.codebeta.org/?p=81</guid>
		<description><![CDATA[Blog好久没有更新了.首先我在学校里祝大家中秋节快乐(我想回家..).
开学后这杂乱无章的2周.很微妙.到高二了,班级,换了种气氛..2周后..连名字都还没有全弄明白,怎么说呢.大家都太勤奋了吧,即... ]]></description>
			<content:encoded><![CDATA[<p>Blog好久没有更新了.首先我在学校里祝大家中秋节快乐(我想回家..).</p>
<p>开学后这杂乱无章的2周.很微妙.到高二了,班级,换了种气氛..2周后..连名字都还没有全弄明白,怎么说呢.大家都太勤奋了吧,即使要找人,也找以前认识的,于是班里就稍微冷清了点儿.过一阵子就OK了应该.</p>
<p>机房来了好多高一的小弟弟小妹妹.今年这一届相当滋润啊.我觉得.毕竟我们一届帮忙打拼的很多了.下一届,不知道会什么样,不过,铁定还是很辉煌了.TOT.今天晚上还得通宵参加UVA的比赛.明天还有2场.累啊.</p>
<p>最后推荐一首,linkin park 的 numb 的钢琴版,和原版的有着全然不同的风味.果然钢琴的感染力还是很强大的.</p>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.codebeta.org/archives/post-81.html/feed</wfw:commentRss>
<enclosure url="http://blog.codebeta.org/wp-content/uploads/2008/09/linkin-park-numb-e992a2e790b4e78988.mp3" length="2844696" type="audio/mpeg" />
		</item>
	</channel>
</rss>
