主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
阿离
2024年3月30日 17:23
天津大学-畅通工程 题解:
P1846
回复 0
|
赞 0
|
浏览 571
#include <bits/stdc++.h> using namespace std; const int maxn=1000+5; int fa[maxn]; int find(int x){ if(x==fa[x]) return x; fa[x]=find(fa[x]); return fa[x]; } int main(){ int N,M; ...
James
2021年3月20日 21:34
并查集模板
P1846
回复 0
|
赞 0
|
浏览 8.6k
#include <iostream> #include <algorithm> #include <stack> #include <string.h> #include <stdio.h> #include <queue> #include <math.h> using namespace std; const int maxn=1005; int f[maxn]; int vis[maxn]; void init(int n){ for(int...
题目
天津大学-畅通工程
题解数量
2
发布题解
热门题解
1
天津大学-畅通工程 题解:
2
并查集模板