上一页 1 ··· 3 4 5 6 7 8 9 下一页
摘要: 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2602 阅读全文
posted @ 2016-04-16 10:09 pter 阅读(149) 评论(0) 推荐(0) 编辑
摘要: 用5块钱去买最贵的物品,用剩下的m-5块去买尽量多的物品 阅读全文
posted @ 2016-04-15 20:54 pter 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 主要是打印路径有点麻烦,然后就是用于标记的数组要开大点,不然会狂wa不止,而且还不告诉你re 阅读全文
posted @ 2016-04-15 20:51 pter 阅读(125) 评论(0) 推荐(0) 编辑
摘要: 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5585思路:对于2和5只须看最后一位数,对于三看所有位的数字之和就行 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7... 阅读全文
posted @ 2015-11-30 01:13 pter 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2057For each test case,print the sum of A and B in hexadecimal in one line.Sample Input+A -A+1A 121A -9... 阅读全文
posted @ 2015-11-24 18:22 pter 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2030解题思路:主要考察汉字的编码方式,汉字机内码在计算机的表达方式的描述是,使用二个字节,汉字的每个字节都是 2 #include 3 #include 4 using namespace std; 5... 阅读全文
posted @ 2015-11-24 00:05 pter 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2034解题思路:set的基本用法 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 7 int main() ... 阅读全文
posted @ 2015-11-24 00:02 pter 阅读(198) 评论(0) 推荐(0) 编辑
摘要: 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2027思路:主要考察gets()函数用法,能够接受输入的空格,如果用%s或是cin>>str都不能输入空格 1 #include 2 #include 3 #include 4 #includ... 阅读全文
posted @ 2015-11-23 17:05 pter 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2020思路:优先队列水过priority_queue 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include... 阅读全文
posted @ 2015-11-23 16:45 pter 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1005思路:找规律题 1 #include 2 main() 3 { 4 int s[100]; 5 int a,b,n,i; 6 while(scanf("%d%d%d",&a,... 阅读全文
posted @ 2015-11-19 21:50 pter 阅读(126) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 下一页