<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: 编程珠玑番外篇-F. 高级语言怎么来的-3</title>
	<atom:link href="http://blog.youxu.info/2009/07/02/fortran/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.youxu.info/2009/07/02/fortran/</link>
	<description>I am Eric Xu, a Googler.</description>
	<lastBuildDate>Wed, 08 Feb 2012 04:38:30 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>By: coder</title>
		<link>http://blog.youxu.info/2009/07/02/fortran/#comment-6445</link>
		<dc:creator>coder</dc:creator>
		<pubDate>Fri, 21 Aug 2009 12:09:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.youxu.info/?p=950#comment-6445</guid>
		<description>更正一点。Float point operations are fully pipelined in current X86 CPU</description>
		<content:encoded><![CDATA[<p>更正一点。Float point operations are fully pipelined in current X86 CPU</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gagiel</title>
		<link>http://blog.youxu.info/2009/07/02/fortran/#comment-6387</link>
		<dc:creator>gagiel</dc:creator>
		<pubDate>Mon, 10 Aug 2009 16:03:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.youxu.info/?p=950#comment-6387</guid>
		<description>推荐本 GRE 的作文书吧～～</description>
		<content:encoded><![CDATA[<p>推荐本 GRE 的作文书吧～～</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: zengjing</title>
		<link>http://blog.youxu.info/2009/07/02/fortran/#comment-6162</link>
		<dc:creator>zengjing</dc:creator>
		<pubDate>Fri, 17 Jul 2009 13:14:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.youxu.info/?p=950#comment-6162</guid>
		<description>呵呵，写得不错啊，搭车问个问题，关于整数因子团问题。

http://xkwq.e21.cn/content_1.php?id=58323

«问题描述：

整数因子团是一个有趣的智力游戏。游戏规则如下：

1、给定由n个连续自然数组成的序列1，…，n。

2、从当前序列中选择一整数，它在当前序列中至少有2个因子(该整数本身可以算作一个因子，例如，整数60的所有因子是：60，30，20，15，12，10，6，5，4，3，2，1。它们构成整数60在当前序列中的因子团 )。

3、从当前序列中删去所选整数的所有因子。

4、重复步骤2和3，直到空序列或当前序列中所有数字在序列中仅有一个因子。

你在游戏中的得分是步骤2中所选择的数字的总和。

例如，当n=6时，给定的序列为1，2，3，4，5，6。

一个游戏过程是：

步骤2：选择整数5；

步骤3：从当前序列中删去整数5的所有因子5，1。

当前序列改变为：2，3，4，6。

   

步骤2：选择整数6；

步骤3：从当前序列中删去整数6的所有因子6，2，3。

当前序列改变：4。游戏结束。

该游戏的得分是11。

 

另一个游戏过程如下：

步骤2：选择整数5；

步骤3：从当前序列中删去整数5的所有因子5，1。

当前序列改变为：2，3，4，6。

 

步骤2：选择整数4；

步骤3：从当前序列中删去整数4的所有因子4，2。

当前序列改变为：3，6。

 

步骤2：选择整数6；

步骤3：从当前序列中删去整数6的所有因子6，3。

当前序列改变为空序列。游戏结束。

该游戏的得分是15。

从上面的例子不难看出，游戏的步骤2所选数字的次序对游戏的得分有很大影响。应该如何选择才能使游戏获得最大得分?</description>
		<content:encoded><![CDATA[<p>呵呵，写得不错啊，搭车问个问题，关于整数因子团问题。</p>
<p><a href="http://xkwq.e21.cn/content_1.php?id=58323" rel="nofollow">http://xkwq.e21.cn/content_1.php?id=58323</a></p>
<p>«问题描述：</p>
<p>整数因子团是一个有趣的智力游戏。游戏规则如下：</p>
<p>1、给定由n个连续自然数组成的序列1，…，n。</p>
<p>2、从当前序列中选择一整数，它在当前序列中至少有2个因子(该整数本身可以算作一个因子，例如，整数60的所有因子是：60，30，20，15，12，10，6，5，4，3，2，1。它们构成整数60在当前序列中的因子团 )。</p>
<p>3、从当前序列中删去所选整数的所有因子。</p>
<p>4、重复步骤2和3，直到空序列或当前序列中所有数字在序列中仅有一个因子。</p>
<p>你在游戏中的得分是步骤2中所选择的数字的总和。</p>
<p>例如，当n=6时，给定的序列为1，2，3，4，5，6。</p>
<p>一个游戏过程是：</p>
<p>步骤2：选择整数5；</p>
<p>步骤3：从当前序列中删去整数5的所有因子5，1。</p>
<p>当前序列改变为：2，3，4，6。</p>
<p>步骤2：选择整数6；</p>
<p>步骤3：从当前序列中删去整数6的所有因子6，2，3。</p>
<p>当前序列改变：4。游戏结束。</p>
<p>该游戏的得分是11。</p>
<p>另一个游戏过程如下：</p>
<p>步骤2：选择整数5；</p>
<p>步骤3：从当前序列中删去整数5的所有因子5，1。</p>
<p>当前序列改变为：2，3，4，6。</p>
<p>步骤2：选择整数4；</p>
<p>步骤3：从当前序列中删去整数4的所有因子4，2。</p>
<p>当前序列改变为：3，6。</p>
<p>步骤2：选择整数6；</p>
<p>步骤3：从当前序列中删去整数6的所有因子6，3。</p>
<p>当前序列改变为空序列。游戏结束。</p>
<p>该游戏的得分是15。</p>
<p>从上面的例子不难看出，游戏的步骤2所选数字的次序对游戏的得分有很大影响。应该如何选择才能使游戏获得最大得分?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: zhangbiao</title>
		<link>http://blog.youxu.info/2009/07/02/fortran/#comment-6147</link>
		<dc:creator>zhangbiao</dc:creator>
		<pubDate>Tue, 07 Jul 2009 05:20:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.youxu.info/?p=950#comment-6147</guid>
		<description>顶一下，写得真好！看了好多篇“编程珠玑番外篇”文章了，感觉很有收获。支持一下，希望继续写下去，让给大家奉献更多好文章。</description>
		<content:encoded><![CDATA[<p>顶一下，写得真好！看了好多篇“编程珠玑番外篇”文章了，感觉很有收获。支持一下，希望继续写下去，让给大家奉献更多好文章。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ringtail</title>
		<link>http://blog.youxu.info/2009/07/02/fortran/#comment-6145</link>
		<dc:creator>ringtail</dc:creator>
		<pubDate>Mon, 06 Jul 2009 02:37:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.youxu.info/?p=950#comment-6145</guid>
		<description>我从来在google reader里面的订阅都只有标题。。。莫非有多个rss源？</description>
		<content:encoded><![CDATA[<p>我从来在google reader里面的订阅都只有标题。。。莫非有多个rss源？</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 大头阿当</title>
		<link>http://blog.youxu.info/2009/07/02/fortran/#comment-6125</link>
		<dc:creator>大头阿当</dc:creator>
		<pubDate>Sun, 05 Jul 2009 02:29:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.youxu.info/?p=950#comment-6125</guid>
		<description>博主改变策略赚PV了？RSS取消全文输出？</description>
		<content:encoded><![CDATA[<p>博主改变策略赚PV了？RSS取消全文输出？</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: conan</title>
		<link>http://blog.youxu.info/2009/07/02/fortran/#comment-6120</link>
		<dc:creator>conan</dc:creator>
		<pubDate>Sun, 05 Jul 2009 01:11:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.youxu.info/?p=950#comment-6120</guid>
		<description>http://blog.youxu.info/feed/
这个地址的rss是截断的，feedburner的是全文的</description>
		<content:encoded><![CDATA[<p><a href="http://blog.youxu.info/feed/" rel="nofollow">http://blog.youxu.info/feed/</a><br />
这个地址的rss是截断的，feedburner的是全文的</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 巫山霏云</title>
		<link>http://blog.youxu.info/2009/07/02/fortran/#comment-6115</link>
		<dc:creator>巫山霏云</dc:creator>
		<pubDate>Sat, 04 Jul 2009 13:55:31 +0000</pubDate>
		<guid isPermaLink="false">http://blog.youxu.info/?p=950#comment-6115</guid>
		<description>为什么我的firefox3.5浏览页面滚动的时候会闪烁呢</description>
		<content:encoded><![CDATA[<p>为什么我的firefox3.5浏览页面滚动的时候会闪烁呢</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: virushuo</title>
		<link>http://blog.youxu.info/2009/07/02/fortran/#comment-6113</link>
		<dc:creator>virushuo</dc:creator>
		<pubDate>Sat, 04 Jul 2009 04:14:31 +0000</pubDate>
		<guid isPermaLink="false">http://blog.youxu.info/?p=950#comment-6113</guid>
		<description>SpeedCoding 这东西我还真没听说过。

白在大学的时候帮别人做FORTRAN作业了 :D</description>
		<content:encoded><![CDATA[<p>SpeedCoding 这东西我还真没听说过。</p>
<p>白在大学的时候帮别人做FORTRAN作业了 :D</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: waakee.com</title>
		<link>http://blog.youxu.info/2009/07/02/fortran/#comment-6112</link>
		<dc:creator>waakee.com</dc:creator>
		<pubDate>Sat, 04 Jul 2009 00:56:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.youxu.info/?p=950#comment-6112</guid>
		<description>&lt;strong&gt;编程珠玑番外篇-F. 高级语言怎么来的-3 &#124; 4G spaces...&lt;/strong&gt;

在高级语言是怎么来的子系列的http://blog.youxu.info/2009/05/13/hpl/&quot;&gt;第一篇中， 我们结合当时硬件的特点，分析了 FORTRAN 为什么一开始不支持递归。但是 FORTRAN 本身是怎么来的这个问题其实还是没...</description>
		<content:encoded><![CDATA[<p><strong>编程珠玑番外篇-F. 高级语言怎么来的-3 | 4G spaces&#8230;</strong></p>
<p>在高级语言是怎么来的子系列的http://blog.youxu.info/2009/05/13/hpl/&#8221;&gt;第一篇中， 我们结合当时硬件的特点，分析了 FORTRAN 为什么一开始不支持递归。但是 FORTRAN 本身是怎么来的这个问题其实还是没&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

