上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 68 下一页
摘要: 模拟退火的第一题~//By SiriusRen#include #include #include using namespace std;int cases,X,Y,M;struct Point{double x,y,dis;}point[1005],b[33],ans,t;do... 阅读全文
posted @ 2016-12-27 17:57 SiriusRen 阅读(247) 评论(0) 推荐(0) 编辑
摘要: 思路: 退火就好了…… 1.强烈建议题目名称改为“吊打出题人” 2.这种题放oj上啥心态。。。—–hzwer二分TLE和WA 终于AC了……//By SiriusRen#include #include #include using namespace std;int n,XX... 阅读全文
posted @ 2016-12-27 17:55 SiriusRen 阅读(119) 评论(0) 推荐(0) 编辑
摘要: 思路: 求凸包: 先按照x轴排个序 从左往右扫一遍 找到上凸壳 (用叉积) 再从右往左扫一遍 求下凸壳搞个旋转卡壳就好啦~嗯 我手懒 用的C++ Complex库 巨好用!//By SiriusRen#include #include #include using names... 阅读全文
posted @ 2016-12-27 11:24 SiriusRen 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 思路: 1.按照题意求最小割 转换成最大流用Dinic解 2. 转换成对偶图 求最短路 Dinic://By SiriusRen#include #include #include #include using namespace std;#define N 1100000int ... 阅读全文
posted @ 2016-12-26 08:55 SiriusRen 阅读(440) 评论(0) 推荐(0) 编辑
摘要: From lydrainbowcat//By SiriusRen#include #include #include #include using namespace std;#define N 2222#define M 999999#define mem(x,k) mems... 阅读全文
posted @ 2016-12-25 22:10 SiriusRen 阅读(93) 评论(0) 推荐(0) 编辑
摘要: 思路: 源->1连费用0 流量2 其它的边 费用w 流量1 n->汇 费用0 流量2 最小费用流 搞定~//By SiriusRen#include #include #include #include using namespace std;#define N 2010#defi... 阅读全文
posted @ 2016-12-25 17:41 SiriusRen 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 思路: (from mhr)//By SiriusRen#include #include #include #include using namespace std;#define N 444#define M 2222int first[N],next[M],v[M],edg... 阅读全文
posted @ 2016-12-25 17:38 SiriusRen 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 题意: 题目描述:在公元3141年人类的足迹已经遍布银河系。为了穿越那巨大的距离,人类发明了一种名为超时空轨道的技术。超时空轨道是双向的,连接两个星系,穿越轨道需要一天的时间。然而这个轨道只能同时给一艘飞船使用,也就是说,每条轨道每天只能有一艘飞船穿越。现在IBM公司要把K(K≤5... 阅读全文
posted @ 2016-12-25 17:34 SiriusRen 阅读(209) 评论(0) 推荐(0) 编辑
摘要: 思路: n^2枚举(必须要n^2枚举啊)+拆点特此嘲讽网上诸多垃圾题解,你们许多都是错的 —yyh//By SiriusRen#include #include #include #include using namespace std;#define N 5555int n,m... 阅读全文
posted @ 2016-12-22 22:57 SiriusRen 阅读(262) 评论(0) 推荐(0) 编辑
摘要: 思路: 就是一个多重匹配 把每个防御塔拆成 拆成第j次 发射的导弹 跑个网络流//By SiriusRen#include #include #include #include #include using namespace std;#define N 555555int n,m... 阅读全文
posted @ 2016-12-22 17:08 SiriusRen 阅读(109) 评论(0) 推荐(0) 编辑
上一页 1 ··· 26 27 28 29 30 31 32 33 34 ··· 68 下一页