結果

問題 No.583 鉄道同好会
ユーザー kyunakyuna
提出日時 2019-08-12 07:13:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,207 bytes
コンパイル時間 684 ms
コンパイル使用メモリ 76,028 KB
実行使用メモリ 4,664 KB
最終ジャッジ日時 2023-10-12 19:57:05
合計ジャッジ時間 2,177 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
4,352 KB
testcase_02 AC 1 ms
4,348 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 1 ms
4,352 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 1 ms
4,348 KB
testcase_09 AC 1 ms
4,352 KB
testcase_10 AC 2 ms
4,352 KB
testcase_11 AC 14 ms
4,348 KB
testcase_12 AC 18 ms
4,352 KB
testcase_13 AC 18 ms
4,348 KB
testcase_14 AC 19 ms
4,348 KB
testcase_15 AC 24 ms
4,348 KB
testcase_16 AC 43 ms
4,664 KB
testcase_17 AC 51 ms
4,520 KB
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <iostream>
#include <vector>
using namespace std;

struct UnionFind {
    vector<int> data;
    int __size;
    UnionFind(int size) : data(size, -1), __size(size) { }
    bool unionSet(int x, int y) {
        if ((x = root(x)) != (y = root(y))) {
            if (data[y] < data[x]) swap(x, y);
            data[x] += data[y]; data[y] = x; __size--;
        }
        return x != y;
    }
    bool findSet(int x, int y) { return root(x) == root(y); }
    int root(int x) { return data[x] < 0 ? x : data[x] = root(data[x]); }
    int size(int x) { return -data[root(x)]; }
    int size() { return __size; }
};

bool euler_path(vector<vector<int>> &g, int s = -1) {
    vector<int> cnt(2);
    for (auto &v: g) cnt[v.size() % 2]++;
    if (cnt[1] == 0) return true;
    if (cnt[1] == 2 && (s == -1 || g[s].size() % 2 == 1)) return true;
    return false;
}

int main() {
    int n, m; cin >> n >> m;
    vector<vector<int>> g(n);
    UnionFind uf(n);
    while (m--) {
        int a, b; cin >> a >> b;
        g[a].emplace_back(b);
        g[b].emplace_back(a);
        uf.unionSet(a, b);
    }
    cout << (euler_path(g) && uf.size() == 1 ? "YES" : "NO") << endl;
    return 0;
}
0