摘要: 递推,统计,数位DP水题,但这题在网上归为组合数学,不知道思路#include <iostream> #include <cstdio> #include <cstring> #define LL long long using namespace std; LL f[11][30]; int main() { char s[11]; int i,j,k; for(i=0;i<26;i++) f[0][i]=1; for(i=1;i<10;i++) { for(j=0;j<(26-i);j++) { ... 阅读全文
posted @ 2013-04-20 22:05 LJ_COME!!!!! 阅读(135) 评论(0) 推荐(0)