結果

問題 No.583 鉄道同好会
ユーザー conankunconankun
提出日時 2017-10-28 07:11:51
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 926 bytes
コンパイル時間 725 ms
コンパイル使用メモリ 65,000 KB
実行使用メモリ 11,504 KB
最終ジャッジ日時 2024-05-01 20:29:44
合計ジャッジ時間 1,915 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
11,368 KB
testcase_01 AC 9 ms
11,384 KB
testcase_02 AC 10 ms
11,468 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 9 ms
11,476 KB
testcase_06 AC 11 ms
11,264 KB
testcase_07 WA -
testcase_08 AC 11 ms
11,504 KB
testcase_09 AC 11 ms
11,384 KB
testcase_10 AC 11 ms
11,492 KB
testcase_11 WA -
testcase_12 AC 18 ms
11,264 KB
testcase_13 AC 16 ms
11,300 KB
testcase_14 AC 16 ms
11,376 KB
testcase_15 AC 17 ms
11,304 KB
testcase_16 AC 23 ms
11,368 KB
testcase_17 AC 27 ms
11,452 KB
testcase_18 AC 26 ms
11,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>

using namespace std;

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);

    int n, m;
    
    cin >> n >> m;

    vector<vector<int>> line(150000, {0, 0});
    vector<bool> stop(150000, false);

    for (int i = 0; i < m; i++) {
        int s, t;
        cin >> s >> t;
        line[m][0] = s;
        line[m][1] = t;
        stop[s] = !stop[s];
        stop[t] = !stop[t];
    }

    int count = 0;
    string yes = "YES";
    for (int i = 0; i < m; i++) {
        if (stop[line[m][0]] && stop[line[m][1]]) {
            yes = "NO";
            break;
        }
        else if (stop[line[m][0]] || stop[line[m][1]]) {
            count++;
            if (count >= 3) {
                yes = "NO";
                break;
            }
        }
    }

    cout << yes << "\n";
    
    int a;
    cin >> a;
}
0