上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 36 下一页

2017年7月29日

HDU 5178 pairs —— 思维 + 二分

摘要: 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5178 pairs Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submi 阅读全文

posted @ 2017-07-29 21:56 h_z_cong 阅读(194) 评论(0) 推荐(0) 编辑

2017年7月25日

CodeChef Forest Gathering —— 二分

摘要: 题目链接:https://vjudge.net/problem/CodeChef-FORESTGA 题解: 现场赛。拿到这题很快就知道是二分,但是一直wa,怎么修改也wa,后来又换了种错误的思路,最后还是觉得二分是正确的,但还是wa。人生,就是在这些瞬间被怀疑的…… 结束后,才发现,test()的时 阅读全文

posted @ 2017-07-25 21:10 h_z_cong 阅读(198) 评论(0) 推荐(0) 编辑

2017年7月24日

UVA 11752 The Super Powers —— 数学与幂

摘要: 题目链接:https://vjudge.net/problem/UVA-11752题解:1.首先变量必须用unsig long long定义。2.可以分析得到,当指数为合数的时候,该值合法。3.由于最大值为(2^64)-1,而最小的合数为4, 所以底数最大都不超过(2... 阅读全文

posted @ 2017-07-24 22:30 h_z_cong 阅读(215) 评论(0) 推荐(0) 编辑

2017年7月23日

HackerRank leonardo-and-lucky-numbers —— 模线性方程的通解

摘要: 题目链接:https://vjudge.net/problem/HackerRank-leonardo-and-lucky-numbers 题解: 1.根据扩展欧几里得:7*x + 4*y = gcd(7,4) = 1,必有整数解,其中一组为(-1,2),通解为:(-1+4*k, 2-7*k)。 2 阅读全文

posted @ 2017-07-23 20:38 h_z_cong 阅读(290) 评论(0) 推荐(0) 编辑

CodeForces - 86D D. Powerful array —— 莫队算法

摘要: 题目链接:http://codeforces.com/problemset/problem/86/D D. Powerful array time limit per test 5 seconds memory limit per test 256 megabytes input standard 阅读全文

posted @ 2017-07-23 20:16 h_z_cong 阅读(1162) 评论(0) 推荐(0) 编辑

2017年7月22日

POJ2115 C Looooops ——模线性方程(扩展gcd)

摘要: 题目链接:http://poj.org/problem?id=2115 C Looooops Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 27838 Accepted: 7930 Description A Compiler 阅读全文

posted @ 2017-07-22 21:55 h_z_cong 阅读(168) 评论(0) 推荐(0) 编辑

HDU3605 Escape —— 二分图多重匹配

摘要: 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=3605 Escape Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others) Total Subm 阅读全文

posted @ 2017-07-22 20:33 h_z_cong 阅读(218) 评论(0) 推荐(0) 编辑

2017年7月21日

UESTC - 900 方老师炸弹 —— 割点

摘要: 题目链接:https://vjudge.net/problem/UESTC-900 方老师炸弹 方老师炸弹 Time Limit: 4000/2000MS (Java/Others) Memory Limit: 65535/65535KB (Java/Others) Submit Status 方老 阅读全文

posted @ 2017-07-21 14:17 h_z_cong 阅读(296) 评论(0) 推荐(0) 编辑

BZOJ 3732 Network —— 最小生成树 + 倍增LCA

摘要: 题目链接:http://www.lydsy.com/JudgeOnline/problem.php?id=3732 Description 给你N个点的无向图 (1 <= N <= 15,000),记为:1…N。 图中有M条边 (1 <= M <= 30,000) ,第j条边的长度为: d_j ( 阅读全文

posted @ 2017-07-21 11:03 h_z_cong 阅读(210) 评论(0) 推荐(0) 编辑

HDU2586 How far away? —— 倍增LCA

摘要: 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2586How far away ?Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K... 阅读全文

posted @ 2017-07-21 10:50 h_z_cong 阅读(147) 评论(0) 推荐(0) 编辑

2017年7月20日

HDU 5969 最大的位或 —— 贪心 + 二进制的理解

摘要: 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5969最大的位或Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Ot... 阅读全文

posted @ 2017-07-20 22:13 h_z_cong 阅读(221) 评论(0) 推荐(0) 编辑

HDU5968 异或密码 —— 二分 + 边界的细节处理

摘要: 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5968 异或密码 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others) Total Submis 阅读全文

posted @ 2017-07-20 21:18 h_z_cong 阅读(281) 评论(0) 推荐(0) 编辑

2017年7月14日

Codeforces Round #383 (Div. 2) C. Arpa's loud Owf and Mehrdad's evil plan —— DFS找环

摘要: 题目链接:http://codeforces.com/contest/742/problem/C C. Arpa's loud Owf and Mehrdad's evil plan time limit per test 1 second memory limit per test 256 meg 阅读全文

posted @ 2017-07-14 08:57 h_z_cong 阅读(170) 评论(0) 推荐(0) 编辑

2017年7月13日

Codeforces Round #383 (Div. 2) D. Arpa's weak amphitheater and Mehrdad's valuable Hoses —— DP(01背包)

摘要: 题目链接:http://codeforces.com/contest/742/problem/D D. Arpa's weak amphitheater and Mehrdad's valuable Hoses time limit per test 1 second memory limit pe 阅读全文

posted @ 2017-07-13 19:38 h_z_cong 阅读(181) 评论(0) 推荐(0) 编辑

Codeforces Round #383 (Div. 2) B. Arpa’s obvious problem and Mehrdad’s terrible solution —— 异或

摘要: 题目链接:http://codeforces.com/contest/742/problem/BB. Arpa’s obvious problem and Mehrdad’s terrible solutiontime limit per test1 secondme... 阅读全文

posted @ 2017-07-13 14:05 h_z_cong 阅读(154) 评论(0) 推荐(0) 编辑

上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 36 下一页

导航