結果
問題 | No.2202 贅沢てりたまチキン |
ユーザー | ManjushriMitra |
提出日時 | 2024-12-30 17:02:18 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 67 ms / 2,000 ms |
コード長 | 1,908 bytes |
コンパイル時間 | 5,392 ms |
コンパイル使用メモリ | 252,260 KB |
実行使用メモリ | 6,400 KB |
最終ジャッジ日時 | 2024-12-30 17:02:29 |
合計ジャッジ時間 | 7,209 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 6 ms
6,400 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 46 ms
6,400 KB |
testcase_15 | AC | 46 ms
6,272 KB |
testcase_16 | AC | 40 ms
6,400 KB |
testcase_17 | AC | 40 ms
6,400 KB |
testcase_18 | AC | 20 ms
5,248 KB |
testcase_19 | AC | 26 ms
6,400 KB |
testcase_20 | AC | 51 ms
6,400 KB |
testcase_21 | AC | 48 ms
6,400 KB |
testcase_22 | AC | 33 ms
5,248 KB |
testcase_23 | AC | 38 ms
5,248 KB |
testcase_24 | AC | 36 ms
5,248 KB |
testcase_25 | AC | 67 ms
6,400 KB |
testcase_26 | AC | 48 ms
6,400 KB |
testcase_27 | AC | 46 ms
6,400 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; using ll = long long; #define rep(i,m,n) for(int i=m; i<int(n); ++i) #define repll(i,m,n) for(ll i=m; i<ll(n); ++i) #define all(a) (a).begin(), (a).end() #define rall(a) (a).rbegin(), (a).rend() #define fi first #define se second template<typename T> bool chmin(T& a, T b){ if(a > b){a = b; return true;} return false; } template<typename T> bool chmax(T& a, T b){ if(a < b){a = b; return true;} return false; } template<typename T> T gcd(T a, T b){ return a % b ? gcd(b, a % b) : b; } template<typename T> T lcm(T a, T b){ return a / gcd(a, b) * b; } struct UnionFind{ vector<int> siz, parent; UnionFind(){} UnionFind(int n){ siz.resize(n, 0); parent.resize(n, 0); for(int i=0; i<n; ++i){ make_tree(i); } } void make_tree(int x){ parent[x] = x; siz[x] = 1; } bool is_same(int x, int y){ return find_root(x) == find_root(y); } bool unite(int x, int y){ x = find_root(x); y = find_root(y); if(x == y) return false; if(siz[x] > siz[y]){ parent[y] = x; siz[x] += siz[y]; }else{ parent[x] = y; siz[y] += siz[x]; } return true; } int find_root(int x){ if(x != parent[x]) parent[x] = find_root(parent[x]); return parent[x]; } int tree_size(int x){ return siz[find_root(x)]; } }; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int N, M; cin >> N >> M; UnionFind UF(2*N + 1); rep(i, 0, M){ int a, b; cin >> a >> b; UF.unite(a, b + N); UF.unite(a + N, b); } string ans = "Yes"; rep(i, 1, N+1){ if(!UF.is_same(i, i+N)){ ans = "No"; break; } } cout << ans << endl; return 0; }