码迷,mamicode.com
首页 >  
搜索关键字:poj 1979    ( 20310个结果
POJ 3321 DFS序+线段树
单点修改树中某个节点,查询子树的性质.DFS序 子树序列一定在父节点的DFS序列之内,所以可以用线段树维护. 1: /* 2: DFS序 +线段树 3: */ 4: 5: #include 6: #include 7: #include 8: #include 9: #include 10: #in...
分类:其他好文   时间:2014-05-12 20:15:56    阅读次数:317
poj 2586 Y2K Accounting Bug (贪心)
Y2K Accounting BugTime Limit:1000MSMemory Limit:65536KTotal Submissions:9632Accepted:4806DescriptionAccounting for Computer Machinists (ACM) has suffe...
分类:其他好文   时间:2014-05-12 19:47:15    阅读次数:462
poj 2480 欧拉函数+积性函数+GCD
题目:http://poj.org/problem?id=2480 首先要会欧拉函数:先贴欧拉函数的模板,来源于吉林大学的模板: //欧拉函数PHI(n)表示的是比n小,并且与n互质的正整数的个数(包括1)。 unsigned euler(unsignedx) {// 就是公式 unsigned i, res=x; for(i = 2; i < (int)sqrt(x ...
分类:其他好文   时间:2014-05-12 07:14:06    阅读次数:368
POJ 1862 Stripies 贪心+优先队列
有一种生物能两两合并,合并之前的重量分别为m1和m2,合并之后变为2*sqrt(m1*m2),现在给定n个这样的生物,求合并成一个的最小重量...
分类:其他好文   时间:2014-05-12 06:32:12    阅读次数:239
[字典树] poj 2418 Hardwood Species
题目链接: http://poj.org/problem?id=2418 Hardwood Species Time Limit: 10000MS   Memory Limit: 65536K Total Submissions: 17511   Accepted: 6949 Description Har...
分类:其他好文   时间:2014-05-11 21:24:17    阅读次数:387
POJ 2002 点的hash
Squares Time Limit: 3500MS   Memory Limit: 65536K Total Submissions: 15489   Accepted: 5864 Description A square is a 4-sided polygon whose sides have equal length and adja...
分类:其他好文   时间:2014-05-11 20:56:36    阅读次数:416
POJ 3468 A Simple Problem with Integers(线段树)
题目链接:http://poj.org/problem?id=3468 A Simple Problem with Integers Time Limit: 5000MS   Memory Limit: 131072K Total Submissions: 56005   Accepted: 16903 Case Time Limit...
分类:其他好文   时间:2014-05-11 18:40:16    阅读次数:301
POJ 3047 Bovine Birthday 给出年月日求星期 蔡勒公式
题目来源:POJ 3047 Bovine Birthday 题意:。。。 思路:蔡勒公式 适合于1582年(中国明朝万历十年)10月15日之后的情形 公式 w = y + y/4 + c/4 - 2*c + 26 * (m+1)/10 + d - 1; m如果是1 2 月份 y要倒退1年 m += 12 y是年份的后两位 y = year%100 c是世纪 c = year/100...
分类:其他好文   时间:2014-05-11 13:28:35    阅读次数:238
[有向树的最小表示] poj 1635 Subway tree systems
题目链接: http://poj.org/problem?id=1635 题目意思: 判断两棵树是否为同构的。0...
分类:其他好文   时间:2014-05-11 05:37:16    阅读次数:338
poj 2456 二分法 最大化最小值
题目:http://poj.org/problem?id=2456 重新练习下二分法,发现还是手速不够 从这道题学到一下几点: 1、线性分几段的方法,看我的Judge()代码; 2、二分的while()最终打印的是down,而不是mid(我代码里写的是ans),或者up, 这么想:跳出循环的时候,假设while里的判断,Judge(ans)==1,那么down是正确解,up不是 Jud...
分类:其他好文   时间:2014-05-11 03:39:07    阅读次数:278
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!