会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
追求挑战,超越自我
自信,自强,永不放弃
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
9
10
11
12
13
14
15
16
17
···
47
下一页
2014年6月14日
总结一些固定句式
摘要: 黑要黑出内涵,不断更新~1、我都没好意思说你你和我说“(对方说的内容)”的时候我都没鸟你,一直(在做一件很sb的事情)
阅读全文
posted @ 2014-06-14 23:16 LegendaryAC
阅读(165)
评论(0)
推荐(0)
编辑
2014年6月13日
HDU 2813
摘要: http://acm.hdu.edu.cn/showproblem.php?pid=2813裸二分图最优匹配,需要用两个map把武将名字映射到点的序号上#include #include #include #include using namespace std;const int N=210;co...
阅读全文
posted @ 2014-06-13 14:52 LegendaryAC
阅读(159)
评论(0)
推荐(0)
编辑
2014年6月12日
HDU 4720
摘要: http://acm.hdu.edu.cn/showproblem.php?pid=4720包含三个点且最小的圆可能是三角形的外接圆或者是以任意两点连成线段的中点为圆心的园,找出最小的即可,然后判断麻瓜到圆心的距离和圆半径之间的关系,注意求外心的前提是三点不共线#include #include #...
阅读全文
posted @ 2014-06-12 20:25 LegendaryAC
阅读(247)
评论(0)
推荐(0)
编辑
计算几何基本函数
摘要: #include #include #include #include #include using namespace std ;const double eps = 1e-8;const double PI = acos(-1.0);int sgn(double x){ if(fabs(x...
阅读全文
posted @ 2014-06-12 18:45 LegendaryAC
阅读(238)
评论(0)
推荐(0)
编辑
2014年6月11日
lca
摘要: http://acm.hdu.edu.cn/showproblem.php?pid=2586无根树转有根树,基于rmq算法计算lca,模板题#include #include #include #include #include using namespace std ;const int MAX_...
阅读全文
posted @ 2014-06-11 23:44 LegendaryAC
阅读(183)
评论(0)
推荐(0)
编辑
2014年6月9日
Codeforces Round #252 (Div. 2) D
摘要: http://codeforces.com/problemset/problem/441/D置换群的基本问题,一个轮换内交换成正常顺序需要k-1次,k为轮换内元素个数两个轮换之间交换元素,可以把两个轮换合并成1个,总交换次数+1一个轮换内部交换,可以把一个轮换拆分成两个,总交换次数-1#includ...
阅读全文
posted @ 2014-06-09 14:14 LegendaryAC
阅读(427)
评论(0)
推荐(0)
编辑
2014年6月5日
三分
摘要: 整数//三分极小值 int Left, Right;int mid, midmid;int mid_value, midmid_value;Left = minn; Right = maxn;while (Right - Left > 5){ mid = (Left + Right) / 2;...
阅读全文
posted @ 2014-06-05 02:29 LegendaryAC
阅读(147)
评论(0)
推荐(0)
编辑
2014年6月4日
平面最近点对
摘要: HDU 1007 求平面最近点对距离的一半#include #include #include #include #include using namespace std;const double eps = 1e-7;const int MAXN = 100010;const double INF...
阅读全文
posted @ 2014-06-04 21:24 LegendaryAC
阅读(133)
评论(0)
推荐(0)
编辑
入门菜鸟
摘要: 熟悉语言的题目http://wikioi.com/problem/1201/#include #include #include using namespace std ;int main(){ int n ; while(~scanf("%d",&n)) { int...
阅读全文
posted @ 2014-06-04 21:14 LegendaryAC
阅读(146)
评论(0)
推荐(0)
编辑
FZU 1202
摘要: http://acm.fzu.edu.cn/problem.php?pid=1202二分图最大匹配,问哪些边是必要的,O(n^3)的方法删边的时候把连接关系也要删掉,如果在此基础上无法找到增广路,加入答案,恢复连接关系,如果能找到,连接关系不用恢复(因为要n对匹配,这组匹配新的了剩下的要留给别的组)...
阅读全文
posted @ 2014-06-04 18:35 LegendaryAC
阅读(184)
评论(0)
推荐(0)
编辑
上一页
1
···
9
10
11
12
13
14
15
16
17
···
47
下一页
公告