<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Lancetw&#039;s acm Blog</title>
	<atom:link href="http://lancetwacm.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://lancetwacm.wordpress.com</link>
	<description>acm</description>
	<lastBuildDate>Sun, 18 Oct 2009 10:50:07 +0000</lastBuildDate>
	<language>zh-tw</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='lancetwacm.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Lancetw&#039;s acm Blog</title>
		<link>http://lancetwacm.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://lancetwacm.wordpress.com/osd.xml" title="Lancetw&#039;s acm Blog" />
	<atom:link rel='hub' href='http://lancetwacm.wordpress.com/?pushpress=hub'/>
		<item>
		<title>[ACM] 100 &#8211; The 3n + 1 problem</title>
		<link>http://lancetwacm.wordpress.com/2009/10/18/acm-100-the-3n-1-problem/</link>
		<comments>http://lancetwacm.wordpress.com/2009/10/18/acm-100-the-3n-1-problem/#comments</comments>
		<pubDate>Sun, 18 Oct 2009 10:48:51 +0000</pubDate>
		<dc:creator>lancetw</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[acm]]></category>

		<guid isPermaLink="false">http://lancetwacm.wordpress.com/?p=92</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lancetwacm.wordpress.com&amp;blog=8304281&amp;post=92&amp;subd=lancetwacm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><pre class="brush: cpp;">
/* Title:   100 - The 3n + 1 problem
 * Purpose: http://uva.onlinejudge.org/external/1/100.pdf 
 * Author:  lancetw@gmail.com aka Hsin-lin Cheng
 * Date:    2009/10/18
 *
 */

#include &lt;stdio.h&gt;

#define swap(x,y) (x^=y,y^=x,x^=y)


int cycle_len(int n)
{
	int cycle = 1;
	while (n != 1) {
		n = n % 2 ? 3 * n + 1 : n / 2;
		++cycle;
	}
	return cycle;
}

int q100(int v1, int v2)
{
	if (v1 &lt;= 0 || v1 &gt;= 1000000 || v2 &lt;= 0 || v2 &gt;= 1000000)
		return 0;

	int i, cycle, max;

	max = 0;
	for (i = v1; i &lt;= v2; i++) {
		cycle = cycle_len(i);
		max = cycle &gt; max ? cycle : max;
	}
	return max;
}

int main(void)
{
	#ifndef ONLINE_JUDGE
	/* [R] Input/Output data with specific files */
	freopen(&quot;sample.in&quot;, &quot;rt&quot;, stdin);
	#endif

	/* Program Start */

	int i, j;
	while (scanf(&quot;%d %d&quot;, &amp;i, &amp;j) !=EOF) {
		printf(&quot;%d %d&quot;, i, j);
		if (i &gt; j) {
			swap(i, j);
		}
		printf(&quot; %d\n&quot;, q100(i, j));
	}
	
	/* Program End  */
	return 0;
}
</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lancetwacm.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lancetwacm.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lancetwacm.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lancetwacm.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lancetwacm.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lancetwacm.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lancetwacm.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lancetwacm.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lancetwacm.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lancetwacm.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lancetwacm.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lancetwacm.wordpress.com/92/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lancetwacm.wordpress.com/92/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lancetwacm.wordpress.com/92/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lancetwacm.wordpress.com&amp;blog=8304281&amp;post=92&amp;subd=lancetwacm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lancetwacm.wordpress.com/2009/10/18/acm-100-the-3n-1-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/74ce523955b161c241d3066ddad2f50d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lancetw</media:title>
		</media:content>
	</item>
		<item>
		<title>給 ACM 用的 Makefile</title>
		<link>http://lancetwacm.wordpress.com/2009/10/18/%e7%b5%a6-acm-%e7%94%a8%e7%9a%84-makefile/</link>
		<comments>http://lancetwacm.wordpress.com/2009/10/18/%e7%b5%a6-acm-%e7%94%a8%e7%9a%84-makefile/#comments</comments>
		<pubDate>Sun, 18 Oct 2009 10:43:15 +0000</pubDate>
		<dc:creator>lancetw</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[acm]]></category>
		<category><![CDATA[zerojudge]]></category>

		<guid isPermaLink="false">http://lancetwacm.wordpress.com/?p=85</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lancetwacm.wordpress.com&amp;blog=8304281&amp;post=85&amp;subd=lancetwacm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><pre class="brush: bash;">
CC = gcc
CFLAGS = -lm -lcrypt -O2 -pipe -ansi -DONLINE_JUDGE -Wall

SOURCE_FILES = $(wildcard *.c)
TARGET_FILES=$(patsubst %.c,%,$(SOURCE_FILES))

.PHONY:all

all:$(TARGET_FILES)

$(TARGET_FILES): % : %.c
	$(CC) $(CFLAGS) $&lt; -o $@

clean:
	$(RM) $(TARGET_FILES)
</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lancetwacm.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lancetwacm.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lancetwacm.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lancetwacm.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lancetwacm.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lancetwacm.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lancetwacm.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lancetwacm.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lancetwacm.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lancetwacm.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lancetwacm.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lancetwacm.wordpress.com/85/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lancetwacm.wordpress.com/85/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lancetwacm.wordpress.com/85/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lancetwacm.wordpress.com&amp;blog=8304281&amp;post=85&amp;subd=lancetwacm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lancetwacm.wordpress.com/2009/10/18/%e7%b5%a6-acm-%e7%94%a8%e7%9a%84-makefile/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/74ce523955b161c241d3066ddad2f50d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lancetw</media:title>
		</media:content>
	</item>
		<item>
		<title>a022: 迴文</title>
		<link>http://lancetwacm.wordpress.com/2009/08/18/a022-%e8%bf%b4%e6%96%87/</link>
		<comments>http://lancetwacm.wordpress.com/2009/08/18/a022-%e8%bf%b4%e6%96%87/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 13:29:32 +0000</pubDate>
		<dc:creator>lancetwacm</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[zerojudge]]></category>

		<guid isPermaLink="false">http://lancetwacm.wordpress.com/2009/08/18/a022-%e8%bf%b4%e6%96%87/</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lancetwacm.wordpress.com&amp;blog=8304281&amp;post=83&amp;subd=lancetwacm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><pre class="brush: cpp;">
#include &lt;stdio.h&gt;
#include &lt;string.h&gt;

#define MAXLENGTH 1024
#define TRUE (1==1)
#define FALSE (0==1)

int check(char *text);

main()
{
    char text[MAXLENGTH];
    while(scanf(&quot;%s&quot;, &amp;text) != EOF)
    {
        if(check(text))
        {
            puts(&quot;yes&quot;);
        }
        else
        {
            puts(&quot;no&quot;);
        }
    }
    return 0;
}

int check(char *text)
{
    int i, count;
    int textlen = strlen(text);
    if (textlen % 2)
    {
        count = textlen / 2;
    } else {
        count = textlen / 2 - 1;
    }
    for (i = 0; i &lt;= count; i++)
    {
        if(text[i] != text[textlen-1-i])
            return FALSE;
    }
    return TRUE;
}
</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lancetwacm.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lancetwacm.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lancetwacm.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lancetwacm.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lancetwacm.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lancetwacm.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lancetwacm.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lancetwacm.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lancetwacm.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lancetwacm.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lancetwacm.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lancetwacm.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lancetwacm.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lancetwacm.wordpress.com/83/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lancetwacm.wordpress.com&amp;blog=8304281&amp;post=83&amp;subd=lancetwacm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lancetwacm.wordpress.com/2009/08/18/a022-%e8%bf%b4%e6%96%87/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ded7c463e6cfe3dcb01cf94c6ac31872?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lancetwacm</media:title>
		</media:content>
	</item>
		<item>
		<title>a024: 最大公因數(GCD)</title>
		<link>http://lancetwacm.wordpress.com/2009/08/18/a024-%e6%9c%80%e5%a4%a7%e5%85%ac%e5%9b%a0%e6%95%b8gcd/</link>
		<comments>http://lancetwacm.wordpress.com/2009/08/18/a024-%e6%9c%80%e5%a4%a7%e5%85%ac%e5%9b%a0%e6%95%b8gcd/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 13:09:03 +0000</pubDate>
		<dc:creator>lancetwacm</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[zerojudge]]></category>

		<guid isPermaLink="false">http://lancetwacm.wordpress.com/?p=81</guid>
		<description><![CDATA[<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lancetwacm.wordpress.com&amp;blog=8304281&amp;post=81&amp;subd=lancetwacm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><pre class="brush: cpp;">
#include &lt;stdio.h&gt;

int gcd(int x, int y);

main()
{
    int x, y, tmp;
    while(scanf(&quot;%d %d&quot;, &amp;x, &amp;y) != EOF)
    {
        if(x &lt; y)
        {
            x^=y^=x^=y;
        }
        printf(&quot;%d\n&quot;, gcd(x, y));
    }
    return 0;
}

int gcd(int x, int y)
{
    int tmp = x % y;
    x = y;
    y = tmp;
    if (tmp &gt; 0)
    {
        return gcd(x, y);
    }
    else {
        return x;
    }
}
</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lancetwacm.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lancetwacm.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lancetwacm.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lancetwacm.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lancetwacm.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lancetwacm.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lancetwacm.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lancetwacm.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lancetwacm.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lancetwacm.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lancetwacm.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lancetwacm.wordpress.com/81/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lancetwacm.wordpress.com/81/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lancetwacm.wordpress.com/81/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lancetwacm.wordpress.com&amp;blog=8304281&amp;post=81&amp;subd=lancetwacm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lancetwacm.wordpress.com/2009/08/18/a024-%e6%9c%80%e5%a4%a7%e5%85%ac%e5%9b%a0%e6%95%b8gcd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ded7c463e6cfe3dcb01cf94c6ac31872?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lancetwacm</media:title>
		</media:content>
	</item>
		<item>
		<title>a020: 身分證檢驗</title>
		<link>http://lancetwacm.wordpress.com/2009/06/28/a020-%e8%ba%ab%e5%88%86%e8%ad%89%e6%aa%a2%e9%a9%97/</link>
		<comments>http://lancetwacm.wordpress.com/2009/06/28/a020-%e8%ba%ab%e5%88%86%e8%ad%89%e6%aa%a2%e9%a9%97/#comments</comments>
		<pubDate>Sat, 27 Jun 2009 16:16:02 +0000</pubDate>
		<dc:creator>lancetwacm</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[zerojudge]]></category>

		<guid isPermaLink="false">http://lancetwacm.wordpress.com/?p=69</guid>
		<description><![CDATA[有更快的算法嗎?<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lancetwacm.wordpress.com&amp;blog=8304281&amp;post=69&amp;subd=lancetwacm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>有更快的算法嗎?<br />
<pre class="brush: cpp;">
#include &lt;stdio.h&gt;

#define MAXLENGTH 1024

int alphabet2num(char c);

main() 
{
    char s[MAXLENGTH];
    while(scanf(&quot;%s&quot;, &amp;s) != EOF)
    {
        if(strlen(s) != 10)
            continue;
        int n = alphabet2num(*s);
        int res = (n % 10) * 9 + ((n / 10) % 10)
                + (*( s + 1 ) - '0') * 8 
                + (*( s + 2 ) - '0') * 7 
                + (*( s + 3 ) - '0') * 6
                + (*( s + 4 ) - '0') * 5 
                + (*( s + 5 ) - '0') * 4
                + (*( s + 6 ) - '0') * 3
                + (*( s + 7 ) - '0') * 2
                + (*( s + 8 ) - '0') * 1
                +  *( s + 9 ) - '0';
        if(!(res % 10))
        {
            printf(&quot;real\n&quot;);
        }
        else
        {
            printf(&quot;fake\n&quot;);
        }
    }
    return 0;
}

int alphabet2num(char c)
{
    int v[]= { 10, 11, 12, 13, 14, 15, 16, 17, 34, 18, 19, 20, 21, 22, 35, 23, 24, 25, 26, 27, 28, 29, 32, 30, 31, 33};
    /* A-&gt;0, ... , Z-&gt;25*/
    int i = c - 'A';
    return *(v + i);
}
</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lancetwacm.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lancetwacm.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lancetwacm.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lancetwacm.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lancetwacm.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lancetwacm.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lancetwacm.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lancetwacm.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lancetwacm.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lancetwacm.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lancetwacm.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lancetwacm.wordpress.com/69/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lancetwacm.wordpress.com/69/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lancetwacm.wordpress.com/69/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lancetwacm.wordpress.com&amp;blog=8304281&amp;post=69&amp;subd=lancetwacm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lancetwacm.wordpress.com/2009/06/28/a020-%e8%ba%ab%e5%88%86%e8%ad%89%e6%aa%a2%e9%a9%97/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ded7c463e6cfe3dcb01cf94c6ac31872?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lancetwacm</media:title>
		</media:content>
	</item>
		<item>
		<title>a017: 五則運算</title>
		<link>http://lancetwacm.wordpress.com/2009/06/28/a017-%e4%ba%94%e5%89%87%e9%81%8b%e7%ae%97/</link>
		<comments>http://lancetwacm.wordpress.com/2009/06/28/a017-%e4%ba%94%e5%89%87%e9%81%8b%e7%ae%97/#comments</comments>
		<pubDate>Sat, 27 Jun 2009 16:15:47 +0000</pubDate>
		<dc:creator>lancetwacm</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[zerojudge]]></category>

		<guid isPermaLink="false">http://lancetwacm.wordpress.com/?p=67</guid>
		<description><![CDATA[待補<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lancetwacm.wordpress.com&amp;blog=8304281&amp;post=67&amp;subd=lancetwacm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>待補<br />
<pre class="brush: cpp;">
#include &lt;stdio.h&gt;
</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lancetwacm.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lancetwacm.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lancetwacm.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lancetwacm.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lancetwacm.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lancetwacm.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lancetwacm.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lancetwacm.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lancetwacm.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lancetwacm.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lancetwacm.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lancetwacm.wordpress.com/67/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lancetwacm.wordpress.com/67/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lancetwacm.wordpress.com/67/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lancetwacm.wordpress.com&amp;blog=8304281&amp;post=67&amp;subd=lancetwacm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lancetwacm.wordpress.com/2009/06/28/a017-%e4%ba%94%e5%89%87%e9%81%8b%e7%ae%97/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ded7c463e6cfe3dcb01cf94c6ac31872?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lancetwacm</media:title>
		</media:content>
	</item>
		<item>
		<title>a016: 數獨(SUDOKU)</title>
		<link>http://lancetwacm.wordpress.com/2009/06/28/a016-%e6%95%b8%e7%8d%a8sudoku/</link>
		<comments>http://lancetwacm.wordpress.com/2009/06/28/a016-%e6%95%b8%e7%8d%a8sudoku/#comments</comments>
		<pubDate>Sat, 27 Jun 2009 16:00:11 +0000</pubDate>
		<dc:creator>lancetwacm</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[zerojudge]]></category>

		<guid isPermaLink="false">http://lancetwacm.wordpress.com/?p=64</guid>
		<description><![CDATA[看完痞子英雄完結篇後終於寫出來了XD<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lancetwacm.wordpress.com&amp;blog=8304281&amp;post=64&amp;subd=lancetwacm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>看完痞子英雄完結篇後終於寫出來了XD<br />
<pre class="brush: cpp;">
#include &lt;stdio.h&gt;

#define TRUE (1==1)  
#define FALSE (0==1)
#define ROW 9
#define COL ROW
#define BLOCKSIZE 3

int checkTable(int x[ROW][COL], int size, int checkcol);
int checkBlock(int x[ROW][COL], int rowstart, int rowlen, int colstart, int collen);

main() 
{
    while(1)
    {
        int x[ROW][COL];
        int i, j, k, l;
        for(i = 0; i &lt; ROW; i++)
        {
            for(j = 0; j &lt; COL; j++)
            {
                if((scanf(&quot;%d&quot;, &amp;x[i][j])) == EOF)
                {
                    return 0;
                }                  
            }
        }      
        int flag;
        if(checkTable(x, ROW, 0) &amp;&amp; checkTable(x, COL, 1))
        {
            flag = TRUE;
            k = 0;
            l = 0;
            for(i = 0; i &lt; (ROW / BLOCKSIZE * COL / BLOCKSIZE); i++)
            {
                if(checkBlock(x, k, BLOCKSIZE, l, BLOCKSIZE))
                {
                    flag = TRUE;
                    k += BLOCKSIZE;
                    if((i + 1) % BLOCKSIZE == 0)
                    {
                        k = 0;
                        l += BLOCKSIZE;
                    }
                }
                else
                {
                    flag = FALSE;
                    break;
                }
            }
            if(flag)
            {
                printf(&quot;yes\n&quot;);    
            }
            else
            {
                printf(&quot;no\n&quot;);    
            }
        }
        else
        {
            printf(&quot;no\n&quot;);
        }
    }
    return 0;
}

checkTable(int x[ROW][COL], int size, int checkcol)
{
    int flag = TRUE;
    int i, j, n;
    int mask[size];
    for(i = 0; i &lt; size; i++)
    {
        int k;
        for(k = 0; k &lt; size; k++)
        {
            mask[k] = 0;
        }        
        for(j = 0; j &lt; size; j++)
        {
            if(checkcol)
                n = x[j][i];
            else
                n = x[i][j];    /* check row */
            /*printf(&quot;%d&quot;, n);*/
            if(mask[n-1] == 0)
            {
                mask[n-1] = 1;
            }
        }
        for(k = 0; k &lt; size; k++)
        {
            if(mask[k] == 0)
            {
                flag = FALSE;
            }
        }      
        /*printf(&quot;\n&quot;);*/
    }
    return flag;
}

int checkBlock(int x[ROW][COL], int rowstart, int rowlen, int colstart, int collen)
{
    int flag = TRUE;
    int i, j, n, k;
    int mask[ROW];
    for(k = 0; k &lt; ROW; k++)
    {
        mask[k] = 0;
    }
    for(i = rowstart; i &lt; rowstart + rowlen; i++)
    {
        for(j = colstart; j &lt; colstart + collen; j++)
        {
            n = x[i][j];
            /*printf(&quot;%d &quot;, n);*/
            if(mask[n-1] == 0)
            {
                mask[n-1] = 1;
            }            
        } 
        /*printf(&quot;\n&quot;);*/
    }
    for(k = 0; k &lt; ROW; k++)
    {
        if(mask[k] == 0)
        {
            flag = FALSE;
        }
    }    
    return flag;
}
</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lancetwacm.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lancetwacm.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lancetwacm.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lancetwacm.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lancetwacm.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lancetwacm.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lancetwacm.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lancetwacm.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lancetwacm.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lancetwacm.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lancetwacm.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lancetwacm.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lancetwacm.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lancetwacm.wordpress.com/64/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lancetwacm.wordpress.com&amp;blog=8304281&amp;post=64&amp;subd=lancetwacm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lancetwacm.wordpress.com/2009/06/28/a016-%e6%95%b8%e7%8d%a8sudoku/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ded7c463e6cfe3dcb01cf94c6ac31872?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lancetwacm</media:title>
		</media:content>
	</item>
		<item>
		<title>a015: 矩陣的翻轉</title>
		<link>http://lancetwacm.wordpress.com/2009/06/27/a015-%e7%9f%a9%e9%99%a3%e7%9a%84%e7%bf%bb%e8%bd%89/</link>
		<comments>http://lancetwacm.wordpress.com/2009/06/27/a015-%e7%9f%a9%e9%99%a3%e7%9a%84%e7%bf%bb%e8%bd%89/#comments</comments>
		<pubDate>Sat, 27 Jun 2009 06:08:02 +0000</pubDate>
		<dc:creator>lancetwacm</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[zerojudge]]></category>

		<guid isPermaLink="false">http://lancetwacm.wordpress.com/?p=59</guid>
		<description><![CDATA[還有更快的方法嗎?<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lancetwacm.wordpress.com&amp;blog=8304281&amp;post=59&amp;subd=lancetwacm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>還有更快的方法嗎?<br />
<pre class="brush: cpp;">
#include &lt;stdio.h&gt;

main() 
{
    int row, col;
    while(scanf(&quot;%d %d&quot;, &amp;row, &amp;col) != EOF)
    {
        int x[row][col];
        int i, j;
        for(i = 0; i &lt; row; i++)
        {
            for(j = 0; j &lt; col; j++)
            {
                scanf(&quot;%d&quot;, &amp;x[i][j]);
            }
        }
        for(i = 0; i &lt; col; i++)
        {
            for(j = 0; j &lt; row; j++)
            {
                printf(&quot;%d &quot;, x[j][i]);
            }
            printf(&quot;\n&quot;);
        }        
    }
    return 0;
}
</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lancetwacm.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lancetwacm.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lancetwacm.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lancetwacm.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lancetwacm.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lancetwacm.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lancetwacm.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lancetwacm.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lancetwacm.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lancetwacm.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lancetwacm.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lancetwacm.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lancetwacm.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lancetwacm.wordpress.com/59/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lancetwacm.wordpress.com&amp;blog=8304281&amp;post=59&amp;subd=lancetwacm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lancetwacm.wordpress.com/2009/06/27/a015-%e7%9f%a9%e9%99%a3%e7%9a%84%e7%bf%bb%e8%bd%89/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ded7c463e6cfe3dcb01cf94c6ac31872?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lancetwacm</media:title>
		</media:content>
	</item>
		<item>
		<title>a013: 羅馬數字</title>
		<link>http://lancetwacm.wordpress.com/2009/06/27/a013-%e7%be%85%e9%a6%ac%e6%95%b8%e5%ad%97/</link>
		<comments>http://lancetwacm.wordpress.com/2009/06/27/a013-%e7%be%85%e9%a6%ac%e6%95%b8%e5%ad%97/#comments</comments>
		<pubDate>Sat, 27 Jun 2009 05:58:50 +0000</pubDate>
		<dc:creator>lancetwacm</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[zerojudge]]></category>

		<guid isPermaLink="false">http://lancetwacm.wordpress.com/?p=58</guid>
		<description><![CDATA[buggy QQ (底下的程式碼不會過&#8230;)<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lancetwacm.wordpress.com&amp;blog=8304281&amp;post=58&amp;subd=lancetwacm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>buggy QQ (底下的程式碼不會過&#8230;)<br />
<pre class="brush: cpp;">
#include &lt;stdio.h&gt;

#define MAXLENGTH 1024

int getValue(char c);
char* getRome(int x, int k);
int rome2num(char *s);
char* num2rome(int x);

main() 
{   
    char x[MAXLENGTH], y[MAXLENGTH];
    while(scanf(&quot;%s %s&quot;, &amp;x, &amp;y) != EOF)
    {
        if(x == &quot;#&quot;)
        {
            break;    
        }
        int i = rome2num(x);
        int j = rome2num(y);
        int ans = i - j &gt; 0 ? i - j : j - i;
        /*printf(&quot;i:%d j:%d\n&quot;, i, j);*/
        printf(&quot;%s\n&quot;, num2rome(ans));
        /*printf(&quot;a: %d\n&quot;, ans);*/
    }
    return 0;
}

int getValue(char c)
{
    switch(c)
    {
        case 'I':
            return 1;
        case 'V':
            return 5;
        case 'X':
            return 10;
        case 'L':
            return 50;
        case 'C':
            return 100;
        case 'D':
            return 500;
        case 'M':
            return 1000;
        default:
            return 0;
    }
}

char* getRome(int x, int k)
{
    static char *r4[] = {&quot;&quot;, &quot;M&quot;, &quot;MM&quot;, &quot;MMM&quot;};
    static char *r3[] = {&quot;&quot;, &quot;C&quot;, &quot;CC&quot;, &quot;CCC&quot;, &quot;CD&quot;, &quot;D&quot;, &quot;DC&quot;, &quot;DCC&quot;, &quot;DCCC&quot;, &quot;CM&quot;};
    static char *r2[] = {&quot;&quot;, &quot;X&quot;, &quot;XX&quot;, &quot;XXX&quot;, &quot;XL&quot;, &quot;L&quot;, &quot;LX&quot;, &quot;LXX&quot;, &quot;LXXX&quot;, &quot;XC&quot;};
    static char *r1[] = {&quot;&quot;, &quot;I&quot;, &quot;II&quot;, &quot;III&quot;, &quot;IV&quot;, &quot;V&quot;, &quot;VI&quot;, &quot;VII&quot;, &quot;VIII&quot;, &quot;IX&quot;};
    
    switch(k)
    {
        case 1:
            return r1[x];    
        case 2:
            return r2[x];
        case 3:
            return r3[x];
        case 4:
            return r4[x];
        default:
            return &quot;OVERFLOW&quot;;
    }
}

int rome2num(char *s)
{
    int sum = 0;
    int c = 0;
    int v[MAXLENGTH];
    while(*s)
    {
        v[c] = getValue(*s++);
        c++;
    }
    int i;
    for(i = 0; i &lt; c; i++)
    {
        if(v[i+1] &gt; v[i])
        {
            sum -= v[i];    
        }
        else
        {
            sum += v[i];
        }
    }
    if(sum &lt; 0)
        sum = sum*-1;
    return sum;
}

char* num2rome(int x)
{
    static char ans[MAXLENGTH];
    if(x == 0)
    {
        return &quot;ZERO&quot;;
    }   
    if(x &lt; 4000 &amp;&amp; x &gt; 0)
    {
        sprintf(ans, &quot;%s%s%s%s&quot;, getRome(x / 1000, 4), getRome((x / 100) % 10, 3), getRome((x / 10) % 10, 2), getRome(x % 10, 1));
        return ans;
    }
    return &quot;OVERFLOW&quot;;
}
</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lancetwacm.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lancetwacm.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lancetwacm.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lancetwacm.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lancetwacm.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lancetwacm.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lancetwacm.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lancetwacm.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lancetwacm.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lancetwacm.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lancetwacm.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lancetwacm.wordpress.com/58/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lancetwacm.wordpress.com/58/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lancetwacm.wordpress.com/58/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lancetwacm.wordpress.com&amp;blog=8304281&amp;post=58&amp;subd=lancetwacm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lancetwacm.wordpress.com/2009/06/27/a013-%e7%be%85%e9%a6%ac%e6%95%b8%e5%ad%97/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ded7c463e6cfe3dcb01cf94c6ac31872?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lancetwacm</media:title>
		</media:content>
	</item>
		<item>
		<title>a012: Hashmat的戰役</title>
		<link>http://lancetwacm.wordpress.com/2009/06/26/a012-hashmat%e7%9a%84%e6%88%b0%e5%bd%b9/</link>
		<comments>http://lancetwacm.wordpress.com/2009/06/26/a012-hashmat%e7%9a%84%e6%88%b0%e5%bd%b9/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 13:18:18 +0000</pubDate>
		<dc:creator>lancetwacm</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[zerojudge]]></category>

		<guid isPermaLink="false">http://lancetwacm.wordpress.com/?p=56</guid>
		<description><![CDATA[在 Dev-C++ 會跑出錯誤的答案&#8230;..真怪 @@<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lancetwacm.wordpress.com&amp;blog=8304281&amp;post=56&amp;subd=lancetwacm&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>在 Dev-C++ 會跑出錯誤的答案&#8230;..真怪 @@<br />
<pre class="brush: cpp;">
#include &lt;stdio.h&gt;

main() 
{   
    long long int i, j;
    while(scanf(&quot;%lld %lld&quot;, &amp;i, &amp;j) != EOF) 
    {
        printf(&quot;%lld\n&quot;, i - j &gt; 0 ? i - j : j - i);
    }
    return 0;
}
</pre></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/lancetwacm.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/lancetwacm.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/lancetwacm.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/lancetwacm.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/lancetwacm.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/lancetwacm.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/lancetwacm.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/lancetwacm.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/lancetwacm.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/lancetwacm.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/lancetwacm.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/lancetwacm.wordpress.com/56/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/lancetwacm.wordpress.com/56/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/lancetwacm.wordpress.com/56/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=lancetwacm.wordpress.com&amp;blog=8304281&amp;post=56&amp;subd=lancetwacm&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://lancetwacm.wordpress.com/2009/06/26/a012-hashmat%e7%9a%84%e6%88%b0%e5%bd%b9/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/ded7c463e6cfe3dcb01cf94c6ac31872?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">lancetwacm</media:title>
		</media:content>
	</item>
	</channel>
</rss>
