题目:click here题意:求给定序列更改其中一个元素后的最长连续上升子序列的长度分析:最长的连续子序列有2种,一种是严格上升(没有更改元素)的长度加1,一种是两段严格上升的加起来。、 1 #include 2 using namespace std; 3 #define F first 4 ....
分类:
其他好文 时间:
2015-08-20 12:42:47
阅读次数:
126
http://bestcoder.hdu.edu.cn/contests/contest_showproblem.php?cid=604&pid=1002Dylans loves sequenceAccepts: 249 Submissions: 806 Time Limit: 2000/1000 ...
分类:
编程语言 时间:
2015-08-19 10:42:26
阅读次数:
154
DZY loves colors, and he enjoys painting.On a colorful day, DZY gets a colorful ribbon, which consists ofnunits (they are numbered from1tonfrom left t...
分类:
其他好文 时间:
2015-08-18 13:54:40
阅读次数:
210
http://codeforces.com/problemset/problem/446/A/*贪心,开前缀后缀,枚举,每个i*//************************************************* Author :Powatr* Created Tim...
分类:
其他好文 时间:
2015-08-16 21:20:52
阅读次数:
95
A. DZY Loves Hash 水题!!AC代码例如以下:#include#include#include#include#include#define inf 100000000#define M 100005#define ll long long#define F(a,b) for(i=a...
分类:
其他好文 时间:
2015-08-15 21:26:09
阅读次数:
138
>>> from ctypes import *
>>> c_int()
c_long(0)
>>> c_char_p(b'hello')
c_char_p(b'hello')>>> c_ushort(-5)
c_ushort(65531)
>>> seitz = c_char_p(b'loves the python')
>>> print(seitz)
c_char_p(b'loves...
分类:
编程语言 时间:
2015-08-14 11:51:20
阅读次数:
223
Problem DescriptionThere arenblack balls andmwhite balls in the big box.Now, DZY starts to randomly pick out the balls one by one. It forms a sequence...
分类:
其他好文 时间:
2015-08-13 21:55:56
阅读次数:
144
http://acm.hunnu.edu.cn/online/?action=problem&type=show&id=11560&courseid=0题意:总共有n天,每天yangyang都需要一个快乐值,有m个队友,每个队友都会给阳阳一个快乐值(为2的幂),并且只能给一次,如果某一天队友给的快乐...
分类:
其他好文 时间:
2015-08-13 21:47:22
阅读次数:
176
B - Inna and Nine
Time Limit:1000MS Memory Limit:262144KB 64bit IO Format:%I64d
& %I64u
Submit Status
Description
Inna loves digit 9 very much. That's why she asked Dima to wri...
分类:
其他好文 时间:
2015-08-09 18:55:11
阅读次数:
233
Yangyang loves AC题意: 给出Yangyang N天中每天达到happy 的最大值,他会从M个ACMer中得到happy值;
求他能最多达到happy的天数。
分析: 如果直接贪心显然有问题,所以我们需要换个姿势。
二分答案+贪心:
二分得到最多happy 天数,然后贪心,每次从M个ACMer中选最大的happy值,放到容量最大的盒子里,用优先队列每次维护最大容量的盒子。
算...
分类:
其他好文 时间:
2015-08-09 12:40:51
阅读次数:
158