結果

問題 No.583 鉄道同好会
ユーザー rpy3cpprpy3cpp
提出日時 2017-10-28 16:24:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 18 ms / 2,000 ms
コード長 1,447 bytes
コンパイル時間 1,730 ms
コンパイル使用メモリ 170,812 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-01 20:59:51
合計ジャッジ時間 2,196 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 6 ms
5,376 KB
testcase_12 AC 7 ms
5,376 KB
testcase_13 AC 7 ms
5,376 KB
testcase_14 AC 8 ms
5,376 KB
testcase_15 AC 9 ms
5,376 KB
testcase_16 AC 16 ms
5,376 KB
testcase_17 AC 18 ms
5,376 KB
testcase_18 AC 18 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

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

bool is_connected(UnionFind & uf){
    int root = -1;
    for (int i = 0; i < uf.data.size(); ++i){
        int r = uf.root(i);
        if (r == i) continue;
        if (root == -1){
            root = r;
        }else if (root != r){
            return false;
        }
    }
    return true;
}

bool has_one_stroke_path(const vector<int> & degree){
    int count_1 = 0;
    for (auto & d : degree){
        if (d & 1) ++count_1;
    }
    if (count_1 == 0 or count_1 == 2){
        return true;
    }else{
        return false;
    }
}

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    int N, M;
    cin >> N >> M;
    vector<int> degree(N, 0);
    UnionFind uf(N);
    for (int i = 0; i < M; ++i){
        int a, b;
        cin >> a >> b;
        ++degree[a];
        ++degree[b];
        uf.unite(a, b);
    }
    if (is_connected(uf) and has_one_stroke_path(degree)){
        cout << "YES" << endl;
    }else{
        cout << "NO" << endl;
    }
    return 0;
}
0