#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; #define REP(i, n) for (int (i) = 0; (i) < (n); (i)++) #define FOR(i, a, b) for (int (i) = (a); (i) < (b); (i)++) #define RREP(i, a) for(int (i) = (a) - 1; (i) >= 0; (i)--) #define FORR(i, a, b) for(int (i) = (a) - 1; (i) >= (b); (i)--) #define DEBUG(C) cerr << #C << " = " << C << endl; using LL = long long; using VI = vector; using VVI = vector; using VL = vector; using VVL = vector; using VD = vector; using VVD = vector; using PII = pair; using PDD = pair; using PLL = pair; using VPII = vector; template using VT = vector; #define ALL(a) begin((a)), end((a)) #define RALL(a) rbegin((a)), rend((a)) #define SORT(a) sort(ALL((a))) #define RSORT(a) sort(RALL((a))) #define REVERSE(a) reverse(ALL((a))) #define MP make_pair #define FORE(a, b) for (auto &&a : (b)) #define FIND(s, e) ((s).find(e) != (s).end()) #define EB emplace_back templateinline bool chmax(T &a, T b){return (a < b ? a = b, true : false);} templateinline bool chmin(T &a, T b){return (a > b ? a = b, true : false);} const int INF = 1e9; const int MOD = INF + 7; const LL LLINF = 1e18; const long double EPS = 1e-9; class UnionFind { private: vector uni; int SIZE; public: UnionFind(int size) { this->uni.resize(size, -1); this->SIZE = size; } UnionFind() {} void resize(int size) { this->uni.resize(size, -1); this->SIZE = size; } //xの親を返す int find(int x) { if (uni[x] < 0) return x; return uni[x] = find(uni[x]); } //xとyが同じグループならばtrue bool same(int x, int y) { return find(x) == find(y); } //xとyがそれぞれ属するグループを併合 //併合処理を行ったならばtrueを返す //xとyがもともと同じグループならばfalseを返す bool unite(int x, int y) { x = find(x); y = find(y); if (x == y) return false; if (uni[x] > uni[y]) swap(x, y); else if (uni[x] == uni[y]) { if (x > y) swap(x, y); } uni[x] += uni[y]; uni[y] = x; this->SIZE--; return true; } //グループ数を返す int size() { return this->SIZE; } //xが属するグループのノード数を返す int size(int x) { return -uni[find(x)]; } }; const int MAX = 1e4 + 10; int n, m; UnionFind uf(MAX); int main() { cin >> n >> m; REP(i, m) { int a, b; cin >> a >> b; uf.unite(a, b); //cout << uf.find(a) << endl; //cout << uf.find(b) << endl << endl;; } FOR(i, 1, n + 1) { cout << uf.find(i) << endl; } }