其他
i am a coder
这个作者很懒,什么都没留下…
展开
-
HDU 吃糖果
题目相当于数学中排列组合的插板法。如果给出的糖果中其他糖果的数量之和能够大于或等于数量最多的那种糖果的数量,则yes否则no#includeint a[1000000];int main(){ __int64 t,m,i,j,k,T,p, n,sum=0,max=0; scanf("%I64d",&T); for(i=0;i<T;i++) { s原创 2013-07-20 14:23:53 · 483 阅读 · 0 评论 -
单词数
单词数Time Limit: 1000msCase Time Limit: 1000msMemory Limit: 32768KB64-bit integer IO format: %I64d Java class name: Main SubmitStatus PID: 6216 Font Size: lily的好朋友xiaoou33原创 2013-09-13 09:47:43 · 672 阅读 · 0 评论 -
叠筐
F. 叠筐Time Limit: 1000msCase Time Limit: 1000msMemory Limit: 32768KB64-bit integer IO format: %I64d Java class name: Main SubmitStatus PID: 6218 Font Size: 需要的时候,就把一个个大小差原创 2013-09-13 09:44:39 · 544 阅读 · 0 评论 -
E - 最短的名字
E - 最短的名字Time Limit:5000MS Memory Limit:65536KB 64bit IO Format:%lld & %lluSubmitStatusPracticeCSU 1115Description在一个奇怪的村子中,很多人的名字都很长,比如aaaaa, bbb and abababab。名字这么长,叫全名显然起原创 2013-09-09 15:51:23 · 745 阅读 · 0 评论 -
Updating a Dictionary
Updating a DictionaryIn this problem, a dictionary is collection of key-value pairs, where keys are lower-case letters, andvalues are non-negative integers. Given an old dictionary and a new dicti原创 2013-09-09 12:10:07 · 794 阅读 · 0 评论 -
全场最水题之陈兴老师与比赛
全场最水题之陈兴老师与比赛Time Limit: 1 Sec Memory Limit: 128 MBSubmit: 401 Solved: 151[Submit][Status][Web Board]Description大家都知道ACM比赛罚时很重要。比如说你做A题要10分钟,B题要15分钟,如果先做A题再做B题,那么在ranking上的时间就是10 + (原创 2013-09-02 11:20:41 · 1121 阅读 · 0 评论 -
Sereja and Bottles
Sereja and BottlesTime Limit: 2000msCase Time Limit: 2000msMemory Limit: 262144KB64-bit integer IO format: %I64d Java class name: (Any) SubmitStatus PID: 33596 Font Size:原创 2013-08-16 09:31:17 · 515 阅读 · 0 评论 -
单词统计
单词统计Time Limit: 1000msMemory Limit: 65536KB64-bit integer IO format: %lld Java class name: Main PrevSubmit Status Statistics Discuss Next Font Size: 现在有一段文本需要处理,需要原创 2013-08-27 10:38:29 · 923 阅读 · 0 评论 -
Stripies
StripiesTime Limit: 1000msCase Time Limit: 1000msMemory Limit: 30000KB64-bit integer IO format: %lld Java class name: Main SubmitStatus PID: 1981 Font Size: Our chemical原创 2013-08-12 09:43:04 · 469 阅读 · 0 评论 -
Restoration of the Permutation
Restoration of the PermutationTime Limit: 1000msMemory Limit: 262144KBThis problem will be judged on CodeForces. Original ID:67B64-bit integer IO format: %I64d Java class name:(原创 2013-08-21 09:09:37 · 521 阅读 · 0 评论 -
Subsequence
SubsequenceTime Limit:3000MS Memory Limit:0KB 64bit IO Format:%lld & %lluSubmitStatusPracticeUVALive 2678DescriptionA sequence of N positive integers (10 N , each of them les原创 2013-08-08 09:28:15 · 562 阅读 · 0 评论 -
HDU 计算直线的交点数
计算直线的交点数 Time Limit : 2000/1000ms (Java/Other) Memory Limit : 65536/32768K (Java/Other)Total Submission(s) : 7 Accepted Submission(s) : 5Font: Times New Roman | Verdana | GeorgiaFont Siz原创 2013-07-27 09:10:03 · 841 阅读 · 0 评论 -
背包九讲——各种背包问题
P01: 01背包问题 题目 有N件物品和一个容量为V的背包。第i件物品的费用是c[i],价值是w[i]。求解将哪些物品装入背包可使这些物品的费用总和不超过背包容量,且价值总和最大。 基本思路 这是最基础的背包问题,特点是:每种物品仅有一件,可以选择放或不放。 用子问题定义状态:即f[i][v]表示前i件物品恰放入一个容量为v的背包可以获得的最大价值。则其状态转移方程便转载 2013-07-24 08:27:59 · 673 阅读 · 0 评论 -
优先队列
优先队列:顾名思义,首先它是一个队列,但是它强调了“优先”二字,所以,已经不能算是一般意义上的队列了,它的“优先”意指取队首元素时,有一定的选择性,即根据元素的属性选择某一项值最优的出队~百度百科上这样描述的: 优先级队列 是不同于先进先出队列的另一种队列。每次从队列中取出的是具有最高优先权的元素 优先队列的类定义 优先队列是0个或多个元素的集合,每个元素都有一个优先权或转载 2013-07-21 10:48:45 · 409 阅读 · 0 评论 -
js简单实现图片切换效果
js简单实现图片切换效果 body{ margin: 0; padding: 0; } .adbody{ width:100%; height:100%; } .adPanel{ width:100%; height:100%; } var count =原创 2016-01-20 13:27:58 · 4163 阅读 · 0 评论