結果
問題 | No.583 鉄道同好会 |
ユーザー | tetsuzuki1115 |
提出日時 | 2018-06-23 18:29:46 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 56 ms / 2,000 ms |
コード長 | 1,220 bytes |
コンパイル時間 | 981 ms |
コンパイル使用メモリ | 101,516 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-30 18:30:21 |
合計ジャッジ時間 | 1,999 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 3 ms
6,944 KB |
testcase_11 | AC | 14 ms
6,944 KB |
testcase_12 | AC | 21 ms
6,940 KB |
testcase_13 | AC | 20 ms
6,944 KB |
testcase_14 | AC | 20 ms
6,940 KB |
testcase_15 | AC | 25 ms
6,944 KB |
testcase_16 | AC | 46 ms
6,940 KB |
testcase_17 | AC | 55 ms
6,944 KB |
testcase_18 | AC | 56 ms
6,940 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:59:9: warning: 's' may be used uninitialized [-Wmaybe-uninitialized] 59 | func(s); | ~~~~^~~ main.cpp:43:9: note: 's' was declared here 43 | int s; | ^
ソースコード
#include <iostream> #include <vector> #include <string> #include <cstring> #include <math.h> #include <cmath> #include <limits.h> #include <map> #include <unordered_map> #include <set> #include <queue> #include <algorithm> #include <functional> #include <stdio.h> using namespace std; long long MOD = 1000000007; vector< vector<int> > P; vector<int> A; vector<int> B; void func( int a ) { B[a] = 1; for ( int i = 0; i < P[a].size(); i++ ) { int n = P[a][i]; if ( B[n] == 0 ) { func(n); } } } int main() { int N,M; cin >> N >> M; P.resize(N); A.resize(N,0); B.resize(N,0); int s; for ( int i = 0; i < M; i++ ) { int a,b; cin >> a >> b; P[a].push_back(b); P[b].push_back(a); A[a] = 1; A[b] = 1; s = a; } bool ans = true; func(s); for ( int i = 0; i < N; i++ ) { if ( A[i] != B[i] ) { ans = false; } } int a = 0; for ( int i = 0; i < N; i++ ) { if ( A[i] && P[i].size()%2 ) { a++; } } if ( !( a == 0 || a == 2 ) ) { ans = false; } cout << ( ans ? "YES" : "NO" ) << endl; return 0; }