上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 26 下一页

2017年7月1日

Codeforces Round #260 (Div. 2)C. Boredom

摘要: 题意:N个数,我们可以选择某个数A,然后去掉A,和等于A+1,A-1的所有数字,得到A价值,问最后价值最大 思路:我们可以得到去掉A,得到的价值为A*A的个数,那么dp[i]=max(dp[i]+dp[i-2],dp[i-1]).记得开long long , 阅读全文

posted @ 2017-07-01 12:17 hhhhx 阅读(148) 评论(0) 推荐(0) 编辑

2017年6月30日

#228(div2)C. Fox and Box Accumulation

摘要: C. Fox and Box Accumulation time limit per test 1 second time limit per test memory limit per test 256 megabytes memory limit per test input standard 阅读全文

posted @ 2017-06-30 16:47 hhhhx 阅读(267) 评论(0) 推荐(0) 编辑

#228(div2)B. Fox and Cross

摘要: B. Fox and Cross time limit per test 1 second time limit per test memory limit per test 256 megabytes memory limit per test input standard input input 阅读全文

posted @ 2017-06-30 16:24 hhhhx 阅读(287) 评论(0) 推荐(0) 编辑

Codeforces Round #228 (Div. 2) A. Fox and Number Game

摘要: A. Fox and Number Game time limit per test 1 second time limit per test memory limit per test 256 megabytes memory limit per test input standard input 阅读全文

posted @ 2017-06-30 15:51 hhhhx 阅读(184) 评论(0) 推荐(0) 编辑

2017年6月28日

#420(div2)C. Mister B and Boring Game

摘要: 题意:输入a,b,l,r。机器先输入a个字符串,必须是字典序从低到高的,人再输入b个任意字符串,然后机器再输入a个,再人,但是机器输入的还有一个规则,就是从当前的字符串后a个,机器这次不能再输入 思路:机器输入的是固定的吧,所以重要是人的,我们输入的如果全是当前字符串的最后一个,那么肯定是最优的,而 阅读全文

posted @ 2017-06-28 23:04 hhhhx 阅读(565) 评论(4) 推荐(0) 编辑

#421(div2)B. Mister B and Angle in Polygon

摘要: On one quiet day all of sudden Mister B decided to draw angle a on his field. Aliens have already visited his field and left many different geometric 阅读全文

posted @ 2017-06-28 16:12 hhhhx 阅读(529) 评论(0) 推荐(0) 编辑

#421(div2)A. Mister B and Book Reading

摘要: A. Mister B and Book Reading Mister B once received a gift: it was a book about aliens, which he started read immediately. This book had c pages. At f 阅读全文

posted @ 2017-06-28 16:09 hhhhx 阅读(336) 评论(0) 推荐(0) 编辑

2017年6月27日

1281 山峰和旗子

摘要: 用一个长度为N的整数数组A,描述山峰和山谷的高度。山峰需要满足如下条件, 0 < P < N - 1 且 A[P - 1] < A[P] > A[P + 1]。 现在要在山峰上插上K个旗子,并且每个旗子之间的距离 >= K,问最多能插上多少个旗子(即求K的最大值)。两个山峰之间的距离为|P - Q| 阅读全文

posted @ 2017-06-27 21:19 hhhhx 阅读(254) 评论(0) 推荐(0) 编辑

2017年6月26日

#420(div2)C. Okabe and Boxes

摘要: 题意:两个操作,add:往栈里push一个数。remove。移除栈顶元素。现在要求将数字按1-n顺序移除。问你需要改动多少次后满足。改动:当遇到不满足时,可以将栈内元素排序。 思路:模拟下 阅读全文

posted @ 2017-06-26 10:19 hhhhx 阅读(229) 评论(0) 推荐(0) 编辑

#420(div2)B. Okabe and Banana Trees

摘要: 题意:给出一个函数,问矩阵里所有的点的横纵坐标之和,矩阵的右上端点得在函数上 思路:推公式,(记得long long ),以纵坐标暴力要好一点,耗时少,并且不用判断x是否为整数。 阅读全文

posted @ 2017-06-26 09:40 hhhhx 阅读(230) 评论(0) 推荐(0) 编辑

上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 26 下一页

导航