摘要: 团伙 #include<iostream> #include<cstdio> #include<vector> #include<queue> #include<cstring> using namespace std; const int N=1005; vector<int> fri[N]; v 阅读全文
posted @ 2021-10-30 18:54 Rekord 阅读(302) 评论(0) 推荐(0) 编辑
摘要: 格子游戏 二维并查集的经典模板了! #include<iostream> using namespace std; const int N=205; struct node{ int x,y; }f[N][N]; node findth(node k){ return (f[k.x][k.y].x= 阅读全文
posted @ 2021-10-30 18:28 Rekord 阅读(277) 评论(0) 推荐(0) 编辑
摘要: 珍珠 #include<iostream> #include<cstring> #include<cstdio> using namespace std; #define inf 0x3f3f3f3f const int N=105; int mapp[N][N]; // int ans[N]; i 阅读全文
posted @ 2021-10-30 13:30 Rekord 阅读(563) 评论(0) 推荐(0) 编辑
摘要: 刻录光盘 #include<iostream> #include<cstring> #include<cstdio> using namespace std; const int N=205; int n; int mapp[N][N]; int p[N]; int main(){ scanf("% 阅读全文
posted @ 2021-10-30 12:47 Rekord 阅读(569) 评论(0) 推荐(0) 编辑