結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
11,384 KB
testcase_01 AC 13 ms
11,480 KB
testcase_02 AC 13 ms
11,392 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 13 ms
11,332 KB
testcase_06 AC 13 ms
11,392 KB
testcase_07 WA -
testcase_08 AC 13 ms
11,392 KB
testcase_09 AC 12 ms
11,292 KB
testcase_10 AC 14 ms
11,488 KB
testcase_11 WA -
testcase_12 AC 19 ms
11,404 KB
testcase_13 AC 19 ms
11,440 KB
testcase_14 AC 20 ms
11,504 KB
testcase_15 AC 21 ms
11,428 KB
testcase_16 AC 28 ms
11,296 KB
testcase_17 AC 31 ms
11,268 KB
testcase_18 AC 31 ms
11,400 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