摘要: #include #include #include #include using namespace std; int array[16000000]; int hash[256]; char s[160000000]; #define mem(a) memset(a,0,sizeof(a)) int main() { int n,m; while(scanf("%d%d",&... 阅读全文
posted @ 2016-04-02 16:19 请叫我凯凯大人 阅读(225) 评论(0) 推荐(0) 编辑
摘要: #include #include #include using namespace std; const int M = 149993; typedef struct { char e[11]; char f[11]; int next; }Entry; Entry entry[M]; int i = 1; int hashIndex[M];//哈希表 int ... 阅读全文
posted @ 2016-04-02 12:51 请叫我凯凯大人 阅读(204) 评论(0) 推荐(0) 编辑
摘要: #include #include #include using namespace std; int visit[30]; int a[30]; int n; void dfs(int x) { for(int i=1;i<=n;i++) { if(!visit[i]) { visit[i]=1; ... 阅读全文
posted @ 2016-03-30 19:19 请叫我凯凯大人 阅读(220) 评论(0) 推荐(0) 编辑
摘要: 1 void rank_list(SqList &L) 2 { 3 student p; 4 int i,j; 5 for( i=1;iL.elem[i-1].average) 7 { 8 p=L.elem[i]; 9 L.elem[i]=L.elem[i-1]; ... 阅读全文
posted @ 2016-03-30 16:40 请叫我凯凯大人 阅读(264) 评论(0) 推荐(0) 编辑
摘要: #include #include #include using namespace std; int visit[30]; int mapp[30][30]; int n,m,k; int cnt; void dfs(int x) { for(int i=1;i<=n;i++) //n行 { int flag=1; for(int j=1... 阅读全文
posted @ 2016-03-30 16:38 请叫我凯凯大人 阅读(461) 评论(0) 推荐(0) 编辑
摘要: 此类题是dfs中最简单的题,如果要求类似于次数,多少种方法的问题,还要加上回溯法(恢复现场等),(n皇后剪枝) 阅读全文
posted @ 2016-03-26 14:19 请叫我凯凯大人 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 题目链接:http://acm.hdu.ed 2016-03-2611:54:07 u.cn/showproblem.php?pid=1501 阅读全文
posted @ 2016-03-26 11:55 请叫我凯凯大人 阅读(359) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include #include #include using namespace std; int main() { int n; scanf("%d",&n); mapm; for(int i=0;i>s; if(m.count(s)==1){ cout<<s<<m... 阅读全文
posted @ 2016-03-25 21:13 请叫我凯凯大人 阅读(169) 评论(0) 推荐(0) 编辑
摘要: #include<stdio.h> #include<iostream> using namespace std; #include<stdlib.h> int visit[30];//visit为标记数组 int a[30]; int n; int count; /*判断是否为素数*/ int s 阅读全文
posted @ 2016-03-24 21:21 请叫我凯凯大人 阅读(210) 评论(0) 推荐(0) 编辑
摘要: #include #include using namespace std; #include int visit[30];//visit为标记数组 int a[30]; int n; int count; /*判断是否为素数*/ int su(int x) { int i; for(i=2; i*i<=x; i++) if(x%i==0) ... 阅读全文
posted @ 2016-03-24 21:18 请叫我凯凯大人 阅读(276) 评论(0) 推荐(0) 编辑