会员
周边
捐助
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
gaolzzxin
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
5
6
7
8
9
10
11
12
13
···
17
下一页
2014年10月9日
大数
摘要: Hat's Fibonaccihttp://acm.hdu.edu.cn/showproblem.php?pid=1250java 1 import java.math.BigInteger; 2 import java.util.Scanner; 3 4 public class Main { ...
阅读全文
posted @ 2014-10-09 16:26 gaolzzxin
阅读(167)
评论(0)
推荐(0)
编辑
2014年10月5日
二分图最佳匹配,求最大权匹配或最小权匹配
摘要: Beloved Sonshttp://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=1338题意:国王有N个儿子,现在每个儿子结婚都能够获得一定的喜悦值,王子编号为1-N,有N个女孩的编号同样为1-N,每个王子心中都有心仪的女孩,现在问如果安...
阅读全文
posted @ 2014-10-05 17:45 gaolzzxin
阅读(347)
评论(0)
推荐(0)
编辑
2014年9月27日
2014 ACM/ICPC Asia Regional Shanghai Online
摘要: Treehttp://acm.hdu.edu.cn/showproblem.php?pid=5044树链剖分,区间更新的时候要用on的左++右--的标记方法,要手动扩栈,用c++交,综合以上的条件可过。 1 #include 2 #include 3 #include 4 #pragma c...
阅读全文
posted @ 2014-09-27 18:10 gaolzzxin
阅读(282)
评论(0)
推荐(0)
编辑
2014年9月24日
2012 Asia Chengdu Regional Contest
摘要: Browsing Historyhttp://acm.hdu.edu.cn/showproblem.php?pid=4464签到 1 #include 2 #include 3 using namespace std; 4 char a[128]; 5 int main(){ 6 int n...
阅读全文
posted @ 2014-09-24 22:45 gaolzzxin
阅读(212)
评论(0)
推荐(0)
编辑
2014年9月23日
2013ACM/ICPC亚洲区南京站现场赛——题目重现
摘要: GPAhttp://acm.hdu.edu.cn/showproblem.php?pid=4802签到题,输入两个表,注意细心点就行了。 1 #include 2 #include 3 const int M=16; 4 char s[M],cp[M][M]={"A","A-","B+","B","...
阅读全文
posted @ 2014-09-23 20:32 gaolzzxin
阅读(266)
评论(0)
推荐(0)
编辑
2014年9月21日
2014 ACM/ICPC Asia Regional Guangzhou Online
摘要: Wang Xifeng's Little Plothttp://acm.hdu.edu.cn/showproblem.php?pid=5024预处理出每个点八个方向能走的最远距离,然后枚举起点,枚举方向,每走一步都要枚举左转和右转的情况,因为预处理好了,所以可以直接算出来。 1 #include 2...
阅读全文
posted @ 2014-09-21 10:01 gaolzzxin
阅读(226)
评论(0)
推荐(0)
编辑
2014年9月19日
2010 Asia Fuzhou Regional Contest
摘要: A hard Aoshu Problemhttp://acm.hdu.edu.cn/showproblem.php?pid=3699用深搜写排列,除法要注意,还有不能有前导零。当然可以5个for,但是如果有很多个,dfs还是好的。 1 #include 2 #include 3 #include 4...
阅读全文
posted @ 2014-09-19 22:29 gaolzzxin
阅读(183)
评论(0)
推荐(0)
编辑
2014年9月16日
2011 Asia Fuzhou Regional Contest
摘要: Xiangqihttp://acm.hdu.edu.cn/showproblem.php?pid=4121模拟,用高内聚低耦合的思想来写模拟题还是很好的,提高了函数的可重用性,程序的可读性,正确性,总而言之,写函数麻烦,总比debug麻烦来的好。 1 #include 2 const int M...
阅读全文
posted @ 2014-09-16 18:10 gaolzzxin
阅读(248)
评论(0)
推荐(0)
编辑
2014年9月14日
2014 ACM/ICPC Asia Regional Xi'an Online
摘要: Post Robothttp://acm.hdu.edu.cn/showproblem.php?pid=5007字符串比较 1 #include 2 char a[110]; 3 char A[]="MAI MAI MAI!"; 4 char B[]="SONY DAFA IS GOOD!"; 5 ...
阅读全文
posted @ 2014-09-14 19:37 gaolzzxin
阅读(293)
评论(0)
推荐(0)
编辑
2014 ACM/ICPC Asia Regional Anshan Online
摘要: 默默的签到Osu!http://acm.hdu.edu.cn/showproblem.php?pid=5003 1 #include 2 #include 3 using namespace std; 4 int a[64]; 5 int main(){ 6 int t,n; 7 w...
阅读全文
posted @ 2014-09-14 19:12 gaolzzxin
阅读(205)
评论(0)
推荐(0)
编辑
上一页
1
···
5
6
7
8
9
10
11
12
13
···
17
下一页