上一页 1 ··· 59 60 61 62 63 64 65 66 67 ··· 72 下一页
摘要: http://acm.hdu.edu.cn/showproblem.php?pid=5086#include #include #include #include #include #include #include #include #define mod 1000000007using name... 阅读全文
posted @ 2014-11-02 19:52 人艰不拆_zmc 阅读(153) 评论(0) 推荐(0) 编辑
摘要: http://acm.sdut.edu.cn/sdutoj/problem.php?action=showproblem&problemid=2877题目描述The problems called "Angry Birds" and "Angry Birds Again and Again" has... 阅读全文
posted @ 2014-11-02 18:58 人艰不拆_zmc 阅读(309) 评论(0) 推荐(0) 编辑
摘要: http://acm.hdu.edu.cn/showproblem.php?pid=1001这题是等差求和,不能直接sum=(1+n)*n/2;因为题目只是说结果在32bit之内,但(1+n)*n很可能超出32bit,所以这样写WA。#include #include #include #inclu... 阅读全文
posted @ 2014-10-18 19:00 人艰不拆_zmc 阅读(269) 评论(0) 推荐(0) 编辑
摘要: 题目: http://poj.org/problem?id=1236【题意】N(2#include #include #include #include #include #include #define N 1010using namespace std;struct node{ int x... 阅读全文
posted @ 2014-10-15 10:14 人艰不拆_zmc 阅读(259) 评论(0) 推荐(0) 编辑
摘要: 题目解析: 这题题意没什么好说的,解法也挺简单的,只要会tarjan算法+只有一个出度为0的强连通分量题目有解这题就迎刃而解了。#include #include #include #include #define N 100002using namespace std;int n,m,tt,tim... 阅读全文
posted @ 2014-10-14 21:11 人艰不拆_zmc 阅读(271) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include #include #define inf 1000001 using namespace std; struct node { int x,y,c,w; int next; } eg[400001]; int n,m,K,s,t,tt,head[2005],dis[2005],pre[2005],v... 阅读全文
posted @ 2014-10-10 20:36 人艰不拆_zmc 阅读(262) 评论(0) 推荐(0) 编辑
摘要: http://poj.org/problem?id=1175 题目解析: 这个题因为数据的原因可以很水的过,但我因为把1e-8写成了1e-9WA了N遍,一直WA,题目意思很简单就是相似图形(就是求旋转的图形,我不会,但在discuss中看到 可以通过求图形的长度来求)另外常识性问题double数据类 阅读全文
posted @ 2014-10-09 19:11 人艰不拆_zmc 阅读(605) 评论(0) 推荐(0) 编辑
摘要: http://poj.org/problem?id=2506 阅读全文
posted @ 2014-10-08 21:14 人艰不拆_zmc 阅读(175) 评论(0) 推荐(0) 编辑
摘要: http://poj.org/problem?id=2135 阅读全文
posted @ 2014-10-08 18:55 人艰不拆_zmc 阅读(255) 评论(0) 推荐(0) 编辑
摘要: http://poj.org/problem?id=2195 阅读全文
posted @ 2014-10-08 10:50 人艰不拆_zmc 阅读(276) 评论(0) 推荐(0) 编辑
摘要: http://poj.org/problem?id=1273 Description Every time it rains on Farmer John's fields, a pond forms over Bessie's favorite clover patch. This means t 阅读全文
posted @ 2014-10-07 16:34 人艰不拆_zmc 阅读(256) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>#include <string.h>#include <stdlib.h>#include <stdio.h>#include <queue>#include<algorithm>#define inf 0x3f3f3f3fusing namespace st 阅读全文
posted @ 2014-09-25 20:34 人艰不拆_zmc 阅读(212) 评论(0) 推荐(0) 编辑
摘要: http://poj.org/problem?id=2513 Description You are given a bunch of wooden sticks. Each endpoint of each stick is colored with some color. Is it possi 阅读全文
posted @ 2014-09-22 20:56 人艰不拆_zmc 阅读(274) 评论(0) 推荐(0) 编辑
摘要: http://acm.hdu.edu.cn/showproblem.php?pid=1010 //题目链接 http://ycool.com/post/ymsvd2s//一个很好理解剪枝思想的博客 http://blog.csdn.net/chyshnu/article/details/617175 阅读全文
posted @ 2014-09-21 18:56 人艰不拆_zmc 阅读(197) 评论(0) 推荐(0) 编辑
摘要: http://poj.org/problem?id=3087 Description A common pastime for poker players at a poker table is to shuffle stacks of chips. Shuffling chips is perfo 阅读全文
posted @ 2014-09-20 19:40 人艰不拆_zmc 阅读(204) 评论(0) 推荐(0) 编辑
上一页 1 ··· 59 60 61 62 63 64 65 66 67 ··· 72 下一页