ACM

USACO Section 1.2.2 Milking Cows

此页面通过工具从 csdn 导出,格式可能有问题。 题目 Milking Cows Three farmers rise at 5 am each morning and head for the barn to milk three cows. The first farmer begins milking his cow at time 300 (measured in seconds after 5 am) and ends at time 1000. The second farmer begins at time 700 and

USACO Section 1.1.7 Broken Necklace

此页面通过工具从 csdn 导出,格式可能有问题。 题目 (由于USACO在外部无法直接访问题库,所以把题目贴上,可以通过上面的目录跳过) Broken Necklace You have a necklace of N

POJ 题目分类与计划

此页面通过工具从 csdn 导出,格式可能有问题。 初期: 一.基本算法: (1)枚举. (poj1753,poj2965) (2)贪心(poj1328,poj2109,poj2586) (3)

HDOJ - 1318 Palindromes

此页面通过工具从 csdn 导出,格式可能有问题。 题目: http://acm.hdu.edu.cn/showproblem.php?pid=1318 一般的字符串处理问题,一个共性:思路简单,代码繁琐。 譬如此题,首先会有一个问题要考虑:如何去

HDOJ - 2045 RPG难题

此页面通过工具从 csdn 导出,格式可能有问题。 题目地址: http://acm.hdu.edu.cn/showproblem.php?pid=2045 算法思想: 1)有三种颜色,在涂某一块区域时,由于它的前一块区域已经确定,且相邻区域不能重

HDOJ – 2043 密码

此页面通过工具从 csdn 导出,格式可能有问题。 题目地址: http://acm.hdu.edu.cn/showproblem.php?pid=2043 最基础的模拟题目,只要按照题目给出的要求进行判断即可。 代码如下: #include<iostream> #include<string> using namespace std; const string s="~!@#$%^"; string ss; int n;