12 2015 档案

摘要:Problem 2216 The Longest StraightAccept: 17Submit: 39Time Limit: 1000 mSecMemory Limit : 32768 KBProblem DescriptionZB is playing a card game where th... 阅读全文
posted @ 2015-12-29 10:11 tcgoshawk 阅读(565) 评论(0) 推荐(0) 编辑
摘要:Problem 2221 RunningManAccept: 17Submit: 52Time Limit: 1000 mSecMemory Limit : 32768 KBProblem DescriptionZB loves watching RunningMan! There's a game... 阅读全文
posted @ 2015-12-28 13:53 tcgoshawk 阅读(297) 评论(0) 推荐(0) 编辑
摘要:2214 Knapsack problemAccept: 6Submit: 9Time Limit: 3000 mSecMemory Limit : 32768 KBProblem DescriptionGiven a set of n items, each with a weight w[i] ... 阅读全文
posted @ 2015-12-27 21:11 tcgoshawk 阅读(830) 评论(0) 推荐(0) 编辑
摘要:Problem 2213 Common TangentsAccept: 7Submit: 8Time Limit: 1000 mSecMemory Limit : 32768 KBProblem DescriptionTwo different circles can have at most fo... 阅读全文
posted @ 2015-12-27 20:57 tcgoshawk 阅读(302) 评论(0) 推荐(0) 编辑
摘要:最少拦截系统Time Limit:1000MSMemory Limit:32768KB64bit IO Format:%I64d & %I64uSubmitStatusPracticeHDU 1257Description某国为了防御敌国的导弹袭击,发展出一种导弹拦截系统.但是这种导弹拦截系统有一个... 阅读全文
posted @ 2015-12-26 17:44 tcgoshawk 阅读(127) 评论(0) 推荐(0) 编辑
摘要:Monkey and BananaTime Limit:1000MSMemory Limit:32768KB64bit IO Format:%I64d & %I64uSubmitStatusPracticeHDU 1069DescriptionA group of researchers are d... 阅读全文
posted @ 2015-12-25 21:17 tcgoshawk 阅读(264) 评论(1) 推荐(0) 编辑
摘要:C. Load Balancing time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output C. Load Balancing time 阅读全文
posted @ 2015-12-24 13:51 tcgoshawk 阅读(189) 评论(0) 推荐(0) 编辑
摘要:4212: String GameTime Limit:1 SecMemory Limit:128 MBSubmit:337Solved:41DescriptionAlice and Bob are playing the following game with strings of letters... 阅读全文
posted @ 2015-12-23 17:02 tcgoshawk 阅读(498) 评论(0) 推荐(0) 编辑
摘要:GTW likes gtTime Limit: 2000/1000 MS (Java/Others)Memory Limit: 131072/131072 K (Java/Others)Total Submission(s): 833Accepted Submission(s): 299Proble... 阅读全文
posted @ 2015-12-18 17:40 tcgoshawk 阅读(179) 评论(0) 推荐(0) 编辑
摘要:Sorting the TombstonesTime Limit:1000MSMemory Limit:65536KB64bit IO Format:%I64d & %I64uSubmitStatusPracticeURAL 1252DescriptionThere is time to throw... 阅读全文
posted @ 2015-12-18 16:27 tcgoshawk 阅读(191) 评论(0) 推荐(0) 编辑
摘要:用 k × 1 的矩形覆盖 n × n 的正方形棋盘用 k × 1 的小矩形覆盖一个 n × n 的正方形棋盘,往往不能实现完全覆盖(比如,有时候 n × n 甚至根本就不是 k 的整倍数)。解题思路:转自:http://www.matrix67.com/blog/archives/5900用 k ... 阅读全文
posted @ 2015-12-17 16:57 tcgoshawk 阅读(172) 评论(0) 推荐(0) 编辑
摘要:Ancient NecropolisTime Limit:5000MSMemory Limit:4096KB64bit IO Format:%I64d & %I64uSubmitStatusPracticeURAL 1249DescriptionAerophotography data provid... 阅读全文
posted @ 2015-12-15 18:06 tcgoshawk 阅读(246) 评论(0) 推荐(0) 编辑
摘要:转自:http://www.cppblog.com/ylfeng/archive/2010/03/26/110592.html声明#include using std::bitset;bitset的定义和初始化bitsetbitvec; //32位,全为0。给出的长度值必须是常量表达式。正如这里给出... 阅读全文
posted @ 2015-12-13 20:24 tcgoshawk 阅读(312) 评论(0) 推荐(0) 编辑
摘要:#includeusing namespace std;const int maxn = 1e4;struct Meeting{ int st,en,idx;}meets[maxn];bool cmp(Meeting a,Meeting b){ //对会议结束时间从小到大排序 retu... 阅读全文
posted @ 2015-12-12 18:08 tcgoshawk 阅读(192) 评论(0) 推荐(0) 编辑
摘要:吉哥系列故事——完美队形ITime Limit: 3000/1000 MS (Java/Others)Memory Limit: 65535/32768 K (Java/Others)Total Submission(s): 2707Accepted Submission(s): 886Proble... 阅读全文
posted @ 2015-12-11 16:57 tcgoshawk 阅读(148) 评论(0) 推荐(0) 编辑
摘要:/* LCS*/#includeusing namespace std;const int maxn = 1000;int dp[maxn][maxn], c[maxn][maxn];int str1[maxn],str2[maxn];int k;void dfs(int i,int j){ ... 阅读全文
posted @ 2015-12-11 12:16 tcgoshawk 阅读(227) 评论(0) 推荐(0) 编辑
摘要:Rope in the LabyrinthTime Limit:500MSMemory Limit:65536KB64bit IO Format:%I64d & %I64uSubmitStatusPracticeURAL 1145DescriptionA labyrinth with rectang... 阅读全文
posted @ 2015-12-09 21:51 tcgoshawk 阅读(164) 评论(0) 推荐(0) 编辑
摘要:A -RelationsTime Limit:1000MSMemory Limit:65536KB64bit IO Format:%I64d & %I64uSubmitStatusPracticeURAL 1142DescriptionBackgroundConsider a specific se... 阅读全文
posted @ 2015-12-09 20:06 tcgoshawk 阅读(136) 评论(0) 推荐(0) 编辑
摘要:ZYB's PremutationTime Limit: 2000/1000 MS (Java/Others)Memory Limit: 131072/131072 K (Java/Others)Total Submission(s): 637Accepted Submission(s): 301P... 阅读全文
posted @ 2015-12-08 14:55 tcgoshawk 阅读(139) 评论(0) 推荐(0) 编辑
摘要:ZYB's TreeTime Limit: 3000/1500 MS (Java/Others)Memory Limit: 131072/131072 K (Java/Others)Total Submission(s): 400Accepted Submission(s): 114Problem ... 阅读全文
posted @ 2015-12-08 14:44 tcgoshawk 阅读(244) 评论(1) 推荐(0) 编辑
摘要:ArrayTime Limit: 2000/1000 MS (Java/Others)Memory Limit: 131072/131072 K (Java/Others)Total Submission(s): 417Accepted Submission(s): 211Problem Descr... 阅读全文
posted @ 2015-12-01 17:24 tcgoshawk 阅读(238) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示