摘要: 1 #include 2 #include 3 #include 4 #include 5 #define MAXN 100001 6 using namespace std; 7 8 const int mod=99991; 9 int sum[MAXN][30]; 10 int f[MAXN][30]; 11 int c[MAXN][30]; 12 int n,k,len; 13 struct node 14 { 15 int xx; 16 node *next; 17 }; 18 node *hash[mod]; 19 20 bool cmp(i... 阅读全文
posted @ 2013-08-24 20:30 null1019 阅读(201) 评论(0) 推荐(0) 编辑