复制代码
上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页
摘要: 感谢上天让我碰到了div 3 #include <bits/stdc++.h> using namespace std; #define LOCAL freopen("in","r",stdin);\ freopen("out","w",stdout); #define DBG2(x,y) cout 阅读全文
posted @ 2018-07-11 20:27 pg633 阅读(106) 评论(0) 推荐(0) 编辑
摘要: 心情不好,被遣散回学校 ,心态不好 ,为什么会累,一直微笑就好了 #include<bits/stdc++.h> using namespace std; int main() { freopen("in","r",stdin);\ freopen("out","w",stdout); int n 阅读全文
posted @ 2018-07-10 14:06 pg633 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 全场暴力 挺毒的 A 数字问题很简单 #include <bits/stdc++.h> using namespace std; int main() { freopen("in","r",stdin);\ freopen("out","w",stdout); int a,b,c,n; cin>>a 阅读全文
posted @ 2018-06-24 20:11 pg633 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 终于结束了紧张而刺激 的大三考试 ,开始打比赛了 ,手真的生了 A #include<bits/stdc++.h> using namespace std; #define LOACL freopen("in","r",stdin);\ freopen("out","w",stdout); #def 阅读全文
posted @ 2018-06-23 19:07 pg633 阅读(78) 评论(0) 推荐(0) 编辑
摘要: 大数理论 入门 Luacs(n,m,p) = C(n%p,m%p)*Lucas(n/p,m/p,p); C(n,m,p) = n!/(n-m)! ^p-2 modp #include<bits/stdc++.h> using namespace std; #define LOACL freopen( 阅读全文
posted @ 2018-05-25 23:59 pg633 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 11. 盛最多水的容器 class Solution { public: int maxArea(vector<int>& height) { vector<int> & v =height; int l =0,r=v.size()-1; int res = 0; while(l<r) { int 阅读全文
posted @ 2018-05-21 23:38 pg633 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 1 .Edmonds-Karp 算法 : 通过反向增光路+bfs 求解最大流 #include<bits/stdc++.h> using namespace std; #define LOACL freopen("in","r",stdin);\ freopen("out","w",stdout); 阅读全文
posted @ 2018-05-19 15:36 pg633 阅读(139) 评论(0) 推荐(0) 编辑
摘要: #include<bits/stdc++.h> using namespace std; #define LOACL freopen("in","r",stdin);\ freopen("out","w",stdout); const int sz = (int)1e7 + 5; const dou 阅读全文
posted @ 2018-05-17 16:50 pg633 阅读(145) 评论(0) 推荐(0) 编辑
摘要: #include<bits/stdc++.h> using namespace std; #define LOACL freopen("in","r",stdin);\ freopen("out","w",stdout); const int sz = (int)1e6 + 5; #define C 阅读全文
posted @ 2018-05-09 21:19 pg633 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 模板 #include<bits/stdc++.h> using namespace std; #define LOACL freopen("in","r",stdin);\ freopen("out","w",stdout); #define REP(i,l,r) for(int i=l;i<=r 阅读全文
posted @ 2018-05-09 20:47 pg633 阅读(162) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页