上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 22 下一页
摘要: Food Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 9289 Accepted Submission(s): 3019 Problem De 阅读全文
posted @ 2019-08-24 00:48 Cruel_King 阅读(182) 评论(0) 推荐(0) 编辑
摘要: Minimum Cost Time Limit: 4000MS Memory Limit: 65536K Total Submissions: 19883 Accepted: 7055 Description Dearboy, a goods victualer, now comes to a bi 阅读全文
posted @ 2019-08-23 12:02 Cruel_King 阅读(215) 评论(0) 推荐(0) 编辑
摘要: ACM Computer Factory Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 10940 Accepted: 4098 Special Judge Description As you know, all the co 阅读全文
posted @ 2019-08-21 18:34 Cruel_King 阅读(230) 评论(0) 推荐(0) 编辑
摘要: 1 #include <cstdio> 2 #include <cstring> 3 #include <queue> 4 #include <vector> 5 #include <algorithm> 6 using namespace std; 7 /****************************************************** 8 * 二分图匹配(匈牙利算法得 阅读全文
posted @ 2019-08-19 14:25 Cruel_King 阅读(189) 评论(0) 推荐(0) 编辑
摘要: From:《python编程从入门到实践》 持续更新中... 都在代码里了 第一到七章: 第八章函数调用基本操作: 将函数导入模块,使用模块中的制定函数: python3中的基本输入输出: 阅读全文
posted @ 2019-07-28 01:04 Cruel_King 阅读(240) 评论(0) 推荐(0) 编辑
摘要: Stars Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 58255 Accepted: 24860 Description Astronomers often examine star maps where stars are 阅读全文
posted @ 2019-07-24 10:31 Cruel_King 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 1 """ 2 a = int(input('a = ')) 3 b = int(input('b = ')) 4 print('%d + %d = %d' % (a, b, a + b)) 5 print("%d / %d = %f" % (a, b, a / b)) 6 print('%d // 阅读全文
posted @ 2019-07-23 16:21 Cruel_King 阅读(208) 评论(0) 推荐(0) 编辑
摘要: Tian Ji -- The Horse Racing Time Limit: 5000MS Memory Limit: 65536K Total Submissions: 17662 Accepted: 5452 Description Here is a famous story in Chin 阅读全文
posted @ 2019-07-11 20:01 Cruel_King 阅读(210) 评论(0) 推荐(0) 编辑
摘要: 问题A:Hello SUST! 知识点:基本输入输出 C/C++: 1 #include <stdio.h> 2 3 int main() { 4 int n; 5 scanf("%d", &n); 6 while(n --) { 7 printf("Hello SUST!\n"); 8 } 9 r 阅读全文
posted @ 2019-07-10 15:35 Cruel_King 阅读(502) 评论(0) 推荐(0) 编辑
摘要: 去年因为太low没有做出来校赛的最后一题,遂今年校赛做了这个题,下面我做详细描述。 原题链接 本题大意:给定一个无向图G,每个边的权值为1,图中L表示起点,C表示终点,#表示未通路,给定时间k,让你判断是否能在给定时间k内走到C,并回答路径最短的路径有多少条? 本题思路:裸的搜索问题,由于图过大,所 阅读全文
posted @ 2019-06-29 21:42 Cruel_King 阅读(413) 评论(1) 推荐(1) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 22 下一页