結果
問題 |
No.2202 贅沢てりたまチキン
|
ユーザー |
![]() |
提出日時 | 2024-04-29 12:19:37 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 57 ms / 2,000 ms |
コード長 | 578 bytes |
コンパイル時間 | 2,232 ms |
コンパイル使用メモリ | 200,736 KB |
最終ジャッジ日時 | 2025-02-21 09:36:32 |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 28 |
ソースコード
#include <bits/stdc++.h> using namespace std; void fast_io() { ios_base::sync_with_stdio(false); cin.tie(nullptr); } #include <atcoder/dsu> using namespace atcoder; int main() { fast_io(); int n, m; cin >> n >> m; dsu uf(2 * n); for (int i = 0; i < m; i++) { int a, b; cin >> a >> b; a--, b--; uf.merge(a, b + n); uf.merge(a + n, b); } for (int i = 0; i < n; i++) { if (!uf.same(i, i + n)) { cout << "No" << endl; return 0; } } cout << "Yes" << endl; }