摘要: #include #include #include #include using namespace std; #define LL long long //#define __int64 LL LL dp[22][3]; int pos[22]; //[][0] 包含49 //[][1] 最高位是9 但不含49 //[][2] 不含49 void initial() { dp[0][2]=1; for(int i = 1; i 10) { pos[cnt++] = a % 10; a /= 10; } pos[cnt]... 阅读全文
posted @ 2013-04-02 15:38 Felix_F 阅读(150) 评论(0) 推荐(0)