The Himalayashttp://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=5341签到 1 #include 2 int main(){ 3 int t,n,a[64]; 4 while(~scanf("%d",&...
分类:
其他好文 时间:
2014-09-07 21:00:25
阅读次数:
321
/*The 2014 ACM-ICPC Asia Mudanjiang Regional First Round - A
The Himalayas
--------------------------------------------------------------------------------
Time Limit: 2 Seconds Memory Limit: ...
分类:
其他好文 时间:
2014-09-07 18:36:25
阅读次数:
228
2013 ACM/ICPC Asia Regional Chengdu Online
题目链接
4730:签到题,直接判断结尾即可
4731:找规律,关键是字母数为2的时候
4734:数位dp,这题把小于和等于的情况分开考虑了,这样每次不用清空dp数组,只需要在计算出等于的情况即可
4737:twopointer+位运算
代码:
#include
#include ...
分类:
其他好文 时间:
2014-09-06 20:03:33
阅读次数:
281
2013 ACM/ICPC Asia Regional Online —— Warmup2
贪心
给出两个位数一样的数,位数
数字的每一位都能移动, 但移动后的整数一定要是合法的, 即无前导零。 使得 A + B 最大
特殊加法: 8+2=0; 8+3=1;
贪心从9开始取,第一位不能为0;
#include "stdio.h"
#include "string....
分类:
其他好文 时间:
2014-09-03 15:00:26
阅读次数:
177
好像大神都用的是2-sat,其实我也有想过。因为我碰到过的判断yes or no的题目就那么几种(2-sat,并查集,搜索,博弈),(因为本人比较水,所以就碰到了这几种,看来以后还是要多做体检积累经验:)),但是比赛的时候还是用了并查集,下面是我的并查集解法:
把b[][]数组上的每个位拆开成两个点i和i',(不超过32位),另外新加两个点0和1,如果确定某点i对应的是0,则i与0点合并,i'点...
分类:
其他好文 时间:
2014-09-01 15:41:03
阅读次数:
224
http://acm.hdu.edu.cn/showproblem.php?pid=4432
6分钟写的代码,一上午去调试,,
哎,一则题目没看懂就去写了,二则,哎,,恶心了,在坚持几天然后ACM退役,想当初一直想着regional拿奖,然后在保研的时候有个更漂亮的简历,卧槽,但是,其实喜欢的是静下心,把一块知识好好弄懂,看着自己一点点由不会到会,由不熟到熟练,而且在这个过程中总结一些思考问题...
分类:
其他好文 时间:
2014-08-22 12:56:28
阅读次数:
173
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1052Problem DescriptionHere is a famous story in Chinese history."That was about 2300 years ago. Genera...
分类:
其他好文 时间:
2014-08-17 12:54:42
阅读次数:
284
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4822Problem DescriptionThree countries, Red, Yellow, and Blue are in war. The map of battlefield is a t...
分类:
其他好文 时间:
2014-08-16 16:19:50
阅读次数:
275
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4816Problem DescriptionThe Bathysphere is a spherical deep-sea submersible which was unpowered and lowe...
分类:
其他好文 时间:
2014-08-09 00:08:31
阅读次数:
684
Hard Codehttp://acm.hdu.edu.cn/showproblem.php?pid=4813 1 #include 2 char op[1024]; 3 int main(){ 4 int t,n,m; 5 while(~scanf("%d",&t)){ 6 ...
分类:
其他好文 时间:
2014-08-05 10:41:02
阅读次数:
212