信息学奥赛一本通T1347-格子游戏 并查集
摘要: #include
using namespace std;
const int N = 40010;
int p[N];
int n,m;
……
信息学奥赛一本通T1347-格子游戏
摘要:```cpp
#include
using namespace std;
const int MAXN=5e6;
int Father[MAXN];
int n,m,x,y;
……