結果
問題 | No.583 鉄道同好会 |
ユーザー | newlife171128 |
提出日時 | 2018-01-21 08:08:43 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 53 ms / 2,000 ms |
コード長 | 1,116 bytes |
コンパイル時間 | 1,622 ms |
コンパイル使用メモリ | 160,304 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-07 13:47:42 |
合計ジャッジ時間 | 2,946 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 13 ms
5,376 KB |
testcase_12 | AC | 18 ms
5,376 KB |
testcase_13 | AC | 18 ms
5,376 KB |
testcase_14 | AC | 19 ms
5,376 KB |
testcase_15 | AC | 23 ms
5,376 KB |
testcase_16 | AC | 44 ms
5,376 KB |
testcase_17 | AC | 53 ms
5,376 KB |
testcase_18 | AC | 53 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> #include <iostream> #include <iomanip> #include <vector> #include <algorithm> #include <string> #include <sstream> #include <cmath> #include <stack> #include <queue> #include <cctype> #include <stdio.h> #include <map> #include <string.h> #include <utility> typedef long long ll; using namespace std; typedef pair<int, int> P; int degree[501]; bool station_point[501]; vector<int> G[501]; void dfs(int a){ station_point[a] =false; for(int i=0; i<G[a].size(); i++){ if(station_point[G[a][i]]){ station_point[G[a][i]] =false; dfs(G[a][i]); } } } int main() { int n=0,m=0; cin>>n>>m; /* memset(station_point,-1, sizeof(station_point));*/ int a ,b; for(int i=0; i<m; i++){ cin>>a>>b; degree[a]++; degree[b]++; station_point[a] =true; station_point[b] =true; G[a].push_back(b); G[b].push_back(a); } dfs(a); for(int i=0; i<n; i++){ if(station_point[i]){ cout<<"NO"<<endl; return 0; } } int cp=0; for(int i=0; i<n; i++){ if(degree[i] %2 ==1)cp++; } if(cp ==0 || cp==2){ cout<<"YES"<<endl; }else { cout<<"NO"<<endl; } return 0; }