2017年3月3日

hdu1198 Farm Irrigation —— dfs or 并查集

摘要: 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1198 dfs: 1 #include<cstdio>//hdu1198 dfs 2 #include<cstring> 3 4 int well[11][5] = { {1,1,1,0,0},{1,0, 阅读全文

posted @ 2017-03-03 19:59 h_z_cong 阅读(225) 评论(0) 推荐(0) 编辑

hdu1010 Tempter of the Bone —— dfs+奇偶性剪枝

摘要: 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1010 Tempter of the Bone Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Other 阅读全文

posted @ 2017-03-03 19:46 h_z_cong 阅读(211) 评论(0) 推荐(0) 编辑

hdu1078 FatMouse and Cheese —— 记忆化搜索

摘要: 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1078代码1:#include//hdu 1078 记忆化搜索#include#define MAX(a,b) (a>b?a:b)int n,k,dp[105][105],... 阅读全文

posted @ 2017-03-03 19:39 h_z_cong 阅读(179) 评论(0) 推荐(0) 编辑

hdu1052 田忌赛马 —— 贪心

摘要: 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1052错误代码:#include//田忌赛马,错误版#include#include/*思路:用田忌最快的马与齐王最快的马比较,1.若能赢就赢;2.若赢不了,就用最差的马拖... 阅读全文

posted @ 2017-03-03 19:37 h_z_cong 阅读(445) 评论(0) 推荐(0) 编辑

hdu1015 Safecracker —— 回溯

摘要: 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1015代码1:#include//hdu1015#include#include#includedouble tg;int len;char a[20],b[20];//a... 阅读全文

posted @ 2017-03-03 19:29 h_z_cong 阅读(967) 评论(0) 推荐(0) 编辑

poj3461 Oulipo —— KMP

摘要: 题目链接:http://poj.org/problem?id=3461 代码如下: 阅读全文

posted @ 2017-03-03 19:08 h_z_cong 阅读(148) 评论(0) 推荐(0) 编辑

导航