2019 藍橋杯省賽 B 組模擬賽(四) 程序設計:隊列

題目: 代碼如下: 50%數據 #include<bits/stdc++.h> using namespace std; #define MAX 50005 vector<int> a[MAX]; int f[MAX]; int father(int x) { while(x != f[x]) x = f[x]; return x; } void combine(int x,int y) {
相關文章
相關標籤/搜索