摘要: 链接:http://poj.org/problem?id=1664View Code 1 #include <cstdio> 2 #include <cstdlib> 3 #include <cstring> 4 #include <cmath> 5 #include <algorithm> 6 using namespace std; 7 int dp[12][12]; 8 void fuck( ) 9 {10 dp[1][1]=1; 11 for( int i=2; i<12; ++ i ){12 dp[i][1]=dp[1 阅读全文
posted @ 2012-08-14 11:17 淡墨æ末央 阅读(148) 评论(0) 推荐(0) 编辑