题目例如以下: Eva loves to collect coins from all over the universe, including some other planets like Mars. One day she visited a universal shopping mall w ...
分类:
其他好文 时间:
2017-05-16 20:07:11
阅读次数:
162
MG loves string Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 262144/262144 K (Java/Others)Total Submission(s): 131 Accepted Submission(s): 50 ...
分类:
其他好文 时间:
2017-05-15 14:24:23
阅读次数:
211
Monk's Love for Food Monk's Love for Food Our monk loves food. Hence,he took up position of a manager at Sagar,a restaurant that serves people with de ...
分类:
其他好文 时间:
2017-05-13 12:24:55
阅读次数:
200
转载请注明出处:http://blog.csdn.net/u012860063?viewmode=contents 题目链接:http://codeforces.com/problemset/problem/445/A DZY loves chessboard, and he enjoys play ...
分类:
其他好文 时间:
2017-05-11 11:39:35
阅读次数:
194
题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=5676 题意: 定义幸运数为:只存在4和7且4和7数量相等的数,给出n,求比>=n的最小幸运数 思路: 因为n最多18位,幸运数最大是10个4,10个7,这种情况特判掉,爆longlong,其他的暴力搜 ...
分类:
其他好文 时间:
2017-05-10 20:31:26
阅读次数:
148
http://acm.hdu.edu.cn/showproblem.php?pid=6019 题意:给出n个颜色的物品,你每次取只能取连续的不同颜色的物品,问最少要取多少次。 思路:从头往后扫,用set存之前取了什么物品,然后每次重复就clear,ans++。 ...
分类:
其他好文 时间:
2017-05-05 21:44:56
阅读次数:
251
首先要知道选择行列操作时顺序是无关的 用两个数组row[i],col[j]分别表示仅选择i行能得到的最大值和仅选择j列能得到的最大值 这个用优先队列维护,没选择一行(列)后将这行(列)的和减去对应的np (mp)又一次增加队列 枚举选择行的次数为i,那么选择列的次数为k - i次,ans = row ...
分类:
其他好文 时间:
2017-05-04 21:41:50
阅读次数:
156
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5676 题意:输入一个正整数n(n <=10^18),求不小于n的只有4和7组成的数,且4和7数量相同 枚举2~18位偶数位的4、7的组合,01分别代表4或7。存下来后排序,二分查询。 trick就是LL ...
分类:
其他好文 时间:
2017-05-02 13:39:09
阅读次数:
148
题目1 : Font Size 题目1 : Font Size 时间限制:10000ms 单点时限:1000ms 内存限制:256MB 描述 Steven loves reading book on his phone. The book he reads now consists of N par ...
分类:
其他好文 时间:
2017-05-01 22:09:48
阅读次数:
190
题目链接:http://poj.org/problem?id=2761 Description Wind loves pretty dogs very much, and she has n pet dogs. So Jiajia has to feed the dogs every day for ...
分类:
其他好文 时间:
2017-04-29 23:29:10
阅读次数:
225