首页 > TAG信息列表 > 4290

[AcWing 4290] 小希的迷宫

并查集 + 树的判定 点击查看代码 #include<bits/stdc++.h> using namespace std; typedef long long LL; const int N = 1e6 + 10; int n; int p[N]; int find(int x) { if (p[x] != x) p[x] = find(p[x]); return p[x]; } void merge(int a, int b) {

把两个图标搞到一起当icon

https://blog.csdn.net/leesoft/article/details/4290 https://www.codercto.com/a/50922.html