上一页 1 ··· 4 5 6 7 8
2017年4月12日
摘要: 01-复杂度2 Maximum Subsequence Sum (25分) 时间限制:200ms 内存限制:64MB 代码长度限制:16kB 判题程序:系统默认<!--Regular if2700--> 作者:陈越 单位:浙江大学 https://pta.patest.cn/pta/test/351 阅读全文
posted @ 2017-04-12 20:11 theFresh 阅读(391) 评论(0) 推荐(0) 编辑
摘要: 01-复杂度1 最大子列和问题 (20分) 时间限制:50000ms 内存限制:64MB 代码长度限制:16kB 判题程序:系统默认<!--Regular if2175--> 作者:DS课程组 单位:浙江大学 https://pta.patest.cn/pta/test/3512/exam/4/qu 阅读全文
posted @ 2017-04-12 20:08 theFresh 阅读(372) 评论(0) 推荐(0) 编辑
摘要: 02-线性结构1 两个有序链表序列的合并 (15分) 编译器:gcc <!--Regular if2711--> 时间限制:400ms 内存限制:64MB 代码长度限制:16kB 判题程序:系统默认<!--Regular if2712--> 作者:DS课程组 单位:浙江大学 https://pta. 阅读全文
posted @ 2017-04-12 20:01 theFresh 阅读(4836) 评论(0) 推荐(0) 编辑
2017年4月3日
摘要: 迷宫问题 Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 20591 Accepted: 12050 http://poj.org/problem?id=3984 Description 定义一个二维数组: int maze[5] 阅读全文
posted @ 2017-04-03 10:23 theFresh 阅读(209) 评论(0) 推荐(0) 编辑
2017年3月30日
摘要: Dungeon Master Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 32228 Accepted: 12378 http://poj.org/problem?id=2251 Description You are tra 阅读全文
posted @ 2017-03-30 20:17 theFresh 阅读(159) 评论(0) 推荐(0) 编辑
摘要: Catch That Cow Time Limit: 2000MS Memory Limit: 65536K Total Submissions: 87152 Accepted: 27344 http://poj.org/problem?id=3278 Description Farmer John 阅读全文
posted @ 2017-03-30 00:10 theFresh 阅读(133) 评论(0) 推荐(0) 编辑
2017年3月27日
摘要: #include using namespace std; typedef int daTp;//datatype typedef struct BTNode *position; typedef position BTree; const int MAXN=30; struct BTNode { daTp data; position lChild,rChild; }; BT... 阅读全文
posted @ 2017-03-27 20:27 theFresh 阅读(452) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8