結果

問題 No.408 五輪ピック
ユーザー izuru_matsuuraizuru_matsuura
提出日時 2016-10-18 22:04:29
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,240 bytes
コンパイル時間 1,794 ms
コンパイル使用メモリ 176,592 KB
実行使用メモリ 10,240 KB
最終ジャッジ日時 2024-11-22 12:54:18
合計ジャッジ時間 23,031 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,240 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 27 ms
6,100 KB
testcase_06 AC 32 ms
5,248 KB
testcase_07 AC 68 ms
5,328 KB
testcase_08 AC 19 ms
5,248 KB
testcase_09 AC 22 ms
5,248 KB
testcase_10 AC 24 ms
5,248 KB
testcase_11 AC 44 ms
5,248 KB
testcase_12 AC 95 ms
5,624 KB
testcase_13 AC 26 ms
5,972 KB
testcase_14 AC 19 ms
5,248 KB
testcase_15 AC 27 ms
6,104 KB
testcase_16 AC 29 ms
6,096 KB
testcase_17 AC 28 ms
6,120 KB
testcase_18 AC 32 ms
6,096 KB
testcase_19 AC 58 ms
5,964 KB
testcase_20 AC 11 ms
5,248 KB
testcase_21 AC 7 ms
5,248 KB
testcase_22 AC 17 ms
5,248 KB
testcase_23 AC 33 ms
6,088 KB
testcase_24 TLE -
testcase_25 AC 985 ms
5,972 KB
testcase_26 AC 34 ms
6,092 KB
testcase_27 AC 3,871 ms
6,104 KB
testcase_28 AC 2,415 ms
5,248 KB
testcase_29 TLE -
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 2 ms
10,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

struct Edge {
    int a, b;
    Edge(int a, int b) : a(a), b(b) {}
    bool operator<(const Edge& e) const {
        return a == e.a ? b < e.b : a < e.a;
    }
};

int main() {
    int N, M;
    scanf("%d %d\n", &N, &M);
    set<Edge> es;
    vector<Edge> es1;
    vector<int> zero_n;
    for (int i = 0; i < M; i++) {
        int a, b;
        scanf("%d %d\n", &a, &b);
        a--; b--;
        if (a > b) swap(a, b);
        if (a == 0) zero_n.push_back(b);
        else es1.emplace_back(a, b);
        es.emplace(a, b);
    }

    auto f = [&](int a, int b) {
        if (a > b) swap(a, b);
        return es.count(Edge(a, b));
    };

    for (auto e : es1) {
        bool a = false, b = false;
        int c = 0;
        for (auto i : zero_n) {
            if (i == e.a || i == e.b) continue;
            bool flag = false;
            if (f(e.a, i)) {
                a = true;
                flag =true;
            }
            if (f(e.b, i)) {
                b = true;
                flag = true;
            }
            c += flag;
        }
        if (c >= 2 && a && b) {
            cout << "YES" << endl;
            return 0;
        }
    }
    cout << "NO" << endl;

}
0