結果
問題 | No.583 鉄道同好会 |
ユーザー | Konton7 |
提出日時 | 2020-03-06 06:23:56 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 65 ms / 2,000 ms |
コード長 | 1,963 bytes |
コンパイル時間 | 2,106 ms |
コンパイル使用メモリ | 209,268 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-14 02:35:45 |
合計ジャッジ時間 | 3,648 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 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 | 2 ms
5,248 KB |
testcase_11 | AC | 17 ms
5,248 KB |
testcase_12 | AC | 23 ms
5,248 KB |
testcase_13 | AC | 24 ms
5,248 KB |
testcase_14 | AC | 23 ms
5,248 KB |
testcase_15 | AC | 31 ms
5,248 KB |
testcase_16 | AC | 53 ms
5,248 KB |
testcase_17 | AC | 65 ms
5,248 KB |
testcase_18 | AC | 65 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; using VI = vector<int>; using VL = vector<ll>; using PII = std::pair<int, int>; using PLL = std::pair<ll, ll>; #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define repr(i, n) for (int i = (int)(n)-1; i >= 0; i--) #define rep2(i, s, n) for (int i = (s); i < (int)(n); i++) #define allpt(v) (v).begin(), (v).end() #define allpt_r(v) (v).rbegin(), (v).rend() const int mod = 1e9 + 7; const string wsp = " "; const string tb = "\t"; const string rt = "\n"; template <typename T> void show1dvec(vector<T> v) { int n = v.size() - 1; rep(i, n) cout << v[i] << wsp; cout << v[n] << rt; return; } template <typename T> void show2dvec(vector<vector<T>> v) { int n = v.size(); rep(i, n) show1dvec(v[i]); } class Unionfind { vector<int> p; public: int find(int x); void unite(int x, int y); Unionfind(int n); }; Unionfind::Unionfind(int n) { for (int i = 0; i < n; i++) { p.push_back(i); } } int Unionfind::find(int x) { while (p[x] != x) { p[x] = p[p[x]]; x = p[x]; } return x; } void Unionfind::unite(int x, int y) { x = Unionfind::find(x); y = Unionfind::find(y); if (x != y) { p[x] = y; } } int main() { #ifdef DEBUG cout << "DEBUG MODE" << endl; ifstream in("input.txt"); //for debug cin.rdbuf(in.rdbuf()); //for debug #endif int n, m, sa, sb, odd = 0; cin >> n >> m; Unionfind station(n); set<int> stationset, stationset2; VI deg(n); rep(i, m) { cin >> sa >> sb; station.unite(sa, sb); deg[sa]++, deg[sb]++; stationset.insert(sa), stationset.insert(sb); } for (auto z : stationset) { stationset2.insert(station.find(z)); if (deg[z] % 2) odd++; } cout << ((stationset2.size() == 1 && (odd == 0 || odd == 2)) ? "YES" : "NO") << rt; return 0; }