摘要: 模拟乱搞 要说算法的话...乱搞算法? #include<iostream> #include<cstring> #include<algorithm> #include<cstdio> #include<cstdlib> using namespace std; const int N=1005; 阅读全文
posted @ 2017-10-02 15:19 探险家Mr.H 阅读(281) 评论(0) 推荐(0) 编辑
摘要: 高精度练习题 根据什么什么基尔霍夫矩阵 反正就是高精度练习 #include<iostream> #include<cstdio> using namespace std; struct data{ int a[101],len; }; int n; data mul(data a,int k) { 阅读全文
posted @ 2017-10-02 13:34 探险家Mr.H 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 最大流裸题? #include<iostream> #include<cstring> #include<cstdio> using namespace std; int n,m; int ne; struct data{int to,next,v;}e[6000001]; int head[100 阅读全文
posted @ 2017-10-02 13:33 探险家Mr.H 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 一看今天的题 T1 bzoj1528 T2 poj2948 T3poj2828 做你******************************************************** 本来想打开电脑上的希尔薇 然后看T3 这他喵的不是线段树吗 然后毅然拿出了自己祖传的ZKW线段树 #i 阅读全文
posted @ 2017-10-02 13:31 探险家Mr.H 阅读(205) 评论(0) 推荐(0) 编辑
摘要: T1 poj2029 90分:二维前缀和 100分:二维树状数组维护二维前缀和(这叫什么满分算法啊喂) 反正瞎搞搞30minAC T2poj3250 高一轩同学出这道题的时候竟然把我当成了素材 真鸡儿刺激 把问题转化一下 题目问:“每个人能看到的人的总数”我们把它转换成“每个人能被看到的次数的总数” 阅读全文
posted @ 2017-10-02 13:19 探险家Mr.H 阅读(185) 评论(0) 推荐(0) 编辑