摘要:
http://poj.org/problem?id=1399 http://acm.hit.edu.cn/hoj/problem/view?id=1037 题意: 在一个最多200*200的minecraft方块地图上(由很多1*1*1的方块搭起来的地图,最高5000),其中两块分别有高0.5米的激 阅读全文
摘要:
现在网上搜到的快排和我以前打的不太一样,感觉有点复杂,我用的快排是FreePascal里/demo/text/qsort.pp的风格,感觉特别简洁。 (其中(x+y)/2可以写成(x+y)>>1提升速度 (最近要实习生面试了,复习一下基础算法。之前排序基本都用STL的sort了,快排都快忘了,没想到 阅读全文
摘要:
我和同学用unity引擎做的,作为软件工程的大作业。 是一个花费金钱抓怪、控制怪物站位、击杀进攻的敌人获得金钱的类似塔防的安卓游戏。 下载地址:http://pan.baidu.com/s/1gdpHOUR 上面那个失效了,我找到了一个重新分享一波:https://pan.baidu.com/s/1 阅读全文
摘要:
不会输,超碉!井字棋这个游戏真是太无聊啦! 算法大概就是,有一个给状况进行估价的函数,深搜每种状况,假设每个人都按对自己最有利的方式走(假设玩家也是不傻),最后让电脑走出最有利的一步。 实验报告: http://wenku.baidu.com/view/b48996b78bd63186bcebbcb 阅读全文
摘要:
Codeforces Round #279 (Div. 2)做得我都变绿了!Problems#Name A Team Olympiadstandard input/output1 s, 256 MB x2377 B Queuestandard input/output2 s, 256 MB ... 阅读全文
摘要:
\先把furthur的超碉线段树粘过来 1 //#pragma comment(linker, "/STACK:102400000,102400000") 2 #include 3 #include 4 #include 5 #include 6 #include 7 #include... 阅读全文
摘要:
今天练了一波DP。时间紧迫我就只贴代码了。20141120fzu2129http://acm.fzu.edu.cn/problem.php?pid=2129不同的子序列个数 1 //#pragma comment(linker, "/STACK:102400000,102400000") 2 #... 阅读全文
摘要:
Problems#NameAAddictive Bubbles1addictive.in / addictive.out2 s, 256 MBx438BBlind Problem Solving1standard input/output2 s, 256 MBx124CCaravan Robbers... 阅读全文
摘要:
http://codeforces.com/contest/489Problems#NameASwapSortstandard input/output1 s, 256 MBx2668BBerSU Ballstandard input/output1 s, 256 MBx2659CGiven Len... 阅读全文
摘要:
acm.hdu.edu.cn/showproblem.php?pid=4790题意:x随机取a~b,y随机取c~d,求(x+y)mod p = m 的概率。(结果用分数表示)题解:数学概率题,运用到了一般的概率姿势。要求z=x+y的概率,可以先算符合条件的x的个数,可以由x和y的范围列出2个不等式,... 阅读全文