結果

問題 No.583 鉄道同好会
ユーザー imulan
提出日時 2018-01-07 03:28:37
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 1,270 bytes
コンパイル時間 2,103 ms
コンパイル使用メモリ 179,480 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-23 09:26:59
合計ジャッジ時間 3,662 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i,n) for(int (i)=0;(i)<(int)(n);++(i))
#define all(x) (x).begin(),(x).end()
#define pb push_back
#define fi first
#define se second
#define dbg(x) cout<<#x" = "<<((x))<<endl
template<class T,class U> ostream& operator<<(ostream& o, const pair<T,U> &p){o<<"("<<p.fi<<","<<p.se<<")";return o;}
template<class T> ostream& operator<<(ostream& o, const vector<T> &v){o<<"[";for(T t:v){o<<t<<",";}o<<"]";return o;}

const int N = 500;
vector<int> G[N];

string solve(){
    int n,m;
    cin >>n >>m;

    set<int> s;
    rep(i,m){
        int u,v;
        cin >>u >>v;
        s.insert(u);
        s.insert(v);
        G[u].pb(v);
        G[v].pb(u);
    }

    int start = *s.begin();
    vector<bool> vis(n);
    queue<int> que;
    vis[start] = true;
    que.push(start);
    while(!que.empty()){
        int now=que.front();
        que.pop();
        for(int e:G[now]){
            if(!vis[e]){
                vis[e]=true;
                que.push(e);
            }
        }
    }

    int odd = 0;
    for(int i:s){
        if(!vis[i]) return "NO";
        odd += (G[i].size()%2);
    }

    return (odd==0||odd==2)?"YES":"NO";
}

int main(){
    cout << solve() << endl;
    return 0;
}
0