摘要: 先补前面几题...之后再写题解 A.Good ol' Numbers Coloring #include <bits/stdc++.h> using namespace std; int gcd(int a,int b){ return b==0? a:gcd(b,a%b); } int main( 阅读全文
posted @ 2019-11-07 19:36 Tianwell 阅读(190) 评论(0) 推荐(0) 编辑
摘要: ..突然发现自己拖了很久都没有学习有关网络流的东西了,所以先从模板开始写起吧. dinic code: #include<iostream> #include<cstring> #include<queue> #define INF 0x3f3f3f3f const int MAXN = 1e6+5 阅读全文
posted @ 2019-11-07 18:15 Tianwell 阅读(179) 评论(0) 推荐(0) 编辑