<?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 for Gnarly Cow</title>
	<atom:link href="http://blog.lipeiqian.com/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.lipeiqian.com</link>
	<description>We are continually faced with a series of great opportunities brilliantly disguised as insoluble problems.</description>
	<lastBuildDate>Sun, 01 Aug 2010 04:27:18 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>Comment on [NOI2005][Day1]维护数列(sequence) by 淘宝网 首页</title>
		<link>http://blog.lipeiqian.com/archives/132/comment-page-1#comment-544</link>
		<dc:creator>淘宝网 首页</dc:creator>
		<pubDate>Sun, 01 Aug 2010 04:27:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.lipeiqian.com/?p=132#comment-544</guid>
		<description>貌似很实用的东西哦~</description>
		<content:encoded><![CDATA[<p>貌似很实用的东西哦~</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on [NOI2005][Day1]维护数列(sequence) by gnarlycow</title>
		<link>http://blog.lipeiqian.com/archives/132/comment-page-1#comment-376</link>
		<dc:creator>gnarlycow</dc:creator>
		<pubDate>Wed, 30 Jun 2010 04:13:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.lipeiqian.com/?p=132#comment-376</guid>
		<description>其实我也比较奇怪，你的代码在我机器上运行大数据2.7s左右。我的代码和你的就两处区别，一个是插入数据时建树，另一个是我用个栈回收空间</description>
		<content:encoded><![CDATA[<p>其实我也比较奇怪，你的代码在我机器上运行大数据2.7s左右。我的代码和你的就两处区别，一个是插入数据时建树，另一个是我用个栈回收空间</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on [NOI2005][Day1]维护数列(sequence) by gnarlycow</title>
		<link>http://blog.lipeiqian.com/archives/132/comment-page-1#comment-374</link>
		<dc:creator>gnarlycow</dc:creator>
		<pubDate>Wed, 30 Jun 2010 04:07:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.lipeiqian.com/?p=132#comment-374</guid>
		<description>最近负责我们高中的OI内训...再说我以后还搞ACM</description>
		<content:encoded><![CDATA[<p>最近负责我们高中的OI内训&#8230;再说我以后还搞ACM</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on [NOI2005][Day1]维护数列(sequence) by BYVoid</title>
		<link>http://blog.lipeiqian.com/archives/132/comment-page-1#comment-373</link>
		<dc:creator>BYVoid</dc:creator>
		<pubDate>Wed, 30 Jun 2010 03:19:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.lipeiqian.com/?p=132#comment-373</guid>
		<description>「但在插入操作时我并没有插成一条链，而是递归将要插入的子序列建成一颗比较平衡的子树。」

這點比較奇怪，Splay並不是越平衡效率越高的，有時候恰恰相反。總的來說只有插完了Splay一下就行了，時間複雜度不會變的。</description>
		<content:encoded><![CDATA[<p>「但在插入操作时我并没有插成一条链，而是递归将要插入的子序列建成一颗比较平衡的子树。」</p>
<p>這點比較奇怪，Splay並不是越平衡效率越高的，有時候恰恰相反。總的來說只有插完了Splay一下就行了，時間複雜度不會變的。</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on [NOI2005][Day1]维护数列(sequence) by BYVoid</title>
		<link>http://blog.lipeiqian.com/archives/132/comment-page-1#comment-372</link>
		<dc:creator>BYVoid</dc:creator>
		<pubDate>Wed, 30 Jun 2010 03:17:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.lipeiqian.com/?p=132#comment-372</guid>
		<description>一年沒怎麼寫了，怎麼又想了起來？</description>
		<content:encoded><![CDATA[<p>一年沒怎麼寫了，怎麼又想了起來？</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Contact Me by pK-lst</title>
		<link>http://blog.lipeiqian.com/contact-me/comment-page-1#comment-347</link>
		<dc:creator>pK-lst</dc:creator>
		<pubDate>Sun, 27 Jun 2010 18:21:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.lipeiqian.com/?page_id=95#comment-347</guid>
		<description>Hello dude, i found out this website few weeks ago over google. And today i sow you on Z-trening, before that i was thinking you left programming world but i was wrong. I am truly beginner in the programming world, so can you write tutorial about those advanced c/c++ structures which i have seen in your codes on this website, like :

struct edge
{
	int v;
	edge *next;
	edge(int v,edge *next):v(v),next(next) {}
} *e[222];

What is &quot;edge(int v,edge *next):v(v),next(next) {}&quot; for ?

Or what are used for those functions like :

bool operator &lt; (int blabla, int blabla) {}

And can you tell me which algorithms are used most in IOI competitions, which graph, DP, greedy, etc.. algorithms are used ?

Thanks in advance, sorry for bothering you but i want to become better :)</description>
		<content:encoded><![CDATA[<p>Hello dude, i found out this website few weeks ago over google. And today i sow you on Z-trening, before that i was thinking you left programming world but i was wrong. I am truly beginner in the programming world, so can you write tutorial about those advanced c/c++ structures which i have seen in your codes on this website, like :</p>
<p>struct edge<br />
{<br />
	int v;<br />
	edge *next;<br />
	edge(int v,edge *next):v(v),next(next) {}<br />
} *e[222];</p>
<p>What is &#8220;edge(int v,edge *next):v(v),next(next) {}&#8221; for ?</p>
<p>Or what are used for those functions like :</p>
<p>bool operator &lt; (int blabla, int blabla) {}</p>
<p>And can you tell me which algorithms are used most in IOI competitions, which graph, DP, greedy, etc.. algorithms are used ?</p>
<p>Thanks in advance, sorry for bothering you but i want to become better :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on An Algorithm to the Maximum Single-Degree-Constrained Spanning Tree Problem by gnarlycow</title>
		<link>http://blog.lipeiqian.com/archives/124/comment-page-1#comment-223</link>
		<dc:creator>gnarlycow</dc:creator>
		<pubDate>Mon, 31 May 2010 11:02:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.lipeiqian.com/?p=124#comment-223</guid>
		<description>是啊，我们班参加年级合唱比赛，得第二名呢...</description>
		<content:encoded><![CDATA[<p>是啊，我们班参加年级合唱比赛，得第二名呢&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on An Algorithm to the Maximum Single-Degree-Constrained Spanning Tree Problem by 天龙</title>
		<link>http://blog.lipeiqian.com/archives/124/comment-page-1#comment-222</link>
		<dc:creator>天龙</dc:creator>
		<pubDate>Mon, 31 May 2010 09:51:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.lipeiqian.com/?p=124#comment-222</guid>
		<description>哈~~~生活很丰富嘛~~~那合唱都是你们班的？</description>
		<content:encoded><![CDATA[<p>哈~~~生活很丰富嘛~~~那合唱都是你们班的？</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Anjuta1.2.4a的ppa by gnarlycow</title>
		<link>http://blog.lipeiqian.com/archives/102/comment-page-1#comment-71</link>
		<dc:creator>gnarlycow</dc:creator>
		<pubDate>Sat, 14 Nov 2009 08:35:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.lipeiqian.com/archives/102#comment-71</guid>
		<description>OK, then.</description>
		<content:encoded><![CDATA[<p>OK, then.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Anjuta1.2.4a的ppa by Aron</title>
		<link>http://blog.lipeiqian.com/archives/102/comment-page-1#comment-70</link>
		<dc:creator>Aron</dc:creator>
		<pubDate>Fri, 13 Nov 2009 18:14:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.lipeiqian.com/archives/102#comment-70</guid>
		<description>应该更新了，APT行变了~~</description>
		<content:encoded><![CDATA[<p>应该更新了，APT行变了~~</p>
]]></content:encoded>
	</item>
</channel>
</rss>
