枚举
文章平均质量分 81
DOLFAMINGO
诗酒趁年华
展开
-
poj2586 Y2K Accounting Bug —— 枚举
链接:http://poj.org/problem?id=2586 代码如下: #include int main() { long long r,s,d,sum; while(scanf("%lld%lld",&s,&d)!=EOF) { if(d*1>s*4) sum = 10*s - 2*d; else if(d*原创 2017-02-12 10:58:50 · 462 阅读 · 0 评论 -
BestCoder Round #92 1002 Count the Sheep —— 枚举+技巧
题目链接:http://bestcoder.hdu.edu.cn/contests/contest_showproblem.php?cid=748&pid=1002 题解: 做题的时候只是想到用dfs暴搜,结果超时了。(刚学dfs时以为它无所不能,后来渐渐不太喜欢了,因为太暴力了,经常超时) TLE wa代码如下: #include using namespa原创 2017-03-17 14:46:52 · 473 阅读 · 0 评论 -
Codeforces Round #394 (Div. 2) C. Dasha and Password —— 枚举
题目链接:http://codeforces.com/problemset/problem/761/C C. Dasha and Password time limit per test 2 seconds memory limit per test 256 megabytes input standard input output原创 2017-07-08 21:50:53 · 383 阅读 · 0 评论 -
Codeforces Round #394 (Div. 2) B. Dasha and friends —— 暴力 or 最小表示法
题目链接:http://codeforces.com/contest/761/problem/B B. Dasha and friends time limit per test 2 seconds memory limit per test 256 megabytes input standard input output sta原创 2017-07-08 21:40:52 · 740 阅读 · 0 评论