結果
問題 | No.583 鉄道同好会 |
ユーザー | ミドリムシ |
提出日時 | 2017-10-27 23:12:30 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
(最新)
TLE
(最初)
|
実行時間 | - |
コード長 | 1,333 bytes |
コンパイル時間 | 530 ms |
コンパイル使用メモリ | 62,992 KB |
実行使用メモリ | 12,196 KB |
最終ジャッジ日時 | 2024-11-21 23:06:23 |
合計ジャッジ時間 | 44,516 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | TLE | - |
testcase_06 | RE | - |
testcase_07 | TLE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | TLE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | TLE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
ソースコード
#include <iostream> #include <algorithm> #include <cmath> using namespace std; int main(){ int N, M; cin >> N >> M; int trains[M][2]; for(int i = 0; i < M; i++){ cin >> trains[M][0]; cin >> trains[M][1]; } bool if_can_go[N]; bool if_can_use[M]; for(int i = 0; i < N; i++){ if_can_go[i] = false; } for(int i = 0; i < M; i++){ if_can_use[i] = false; } while(true){ bool if_fin = true; for(int i = 0; i < M; i++){ if((if_can_go[trains[i][0]] || if_can_go[trains[i][0]]) && !if_can_use[i]){ if_can_go[trains[i][0]] = true; if_can_go[trains[i][1]] = true; if_can_use[i] = true; if_fin = false; } } if(if_fin){ break; } } for(int i = 0; i < M; i++){ if(!if_can_use[i]){ cout << "NO" << endl; return 0; } } int stop[N]; for(int i = 0; i < N; i++){ stop[i] = 0; } for(int i = 0; i < M; i++){ stop[trains[i][0]]++; stop[trains[i][1]]++; } int count = 0; for(int i = 0; i < N; i++){ count += stop[i] % 2; } if(count <= 2){ cout << "YES" << endl; }else{ cout << "NO" << endl; } }