結果

問題 No.408 五輪ピック
ユーザー kimiyukikimiyuki
提出日時 2016-10-18 18:06:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 951 bytes
コンパイル時間 700 ms
コンパイル使用メモリ 80,604 KB
実行使用メモリ 7,552 KB
最終ジャッジ日時 2024-05-02 02:39:19
合計ジャッジ時間 2,255 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,948 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 26 ms
6,940 KB
testcase_06 WA -
testcase_07 AC 23 ms
6,944 KB
testcase_08 AC 19 ms
6,940 KB
testcase_09 AC 20 ms
6,940 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 25 ms
6,940 KB
testcase_13 AC 26 ms
6,940 KB
testcase_14 WA -
testcase_15 AC 29 ms
6,940 KB
testcase_16 AC 28 ms
6,940 KB
testcase_17 AC 29 ms
6,944 KB
testcase_18 AC 30 ms
6,940 KB
testcase_19 AC 32 ms
6,944 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 57 ms
7,552 KB
testcase_24 WA -
testcase_25 AC 28 ms
6,944 KB
testcase_26 AC 33 ms
6,940 KB
testcase_27 WA -
testcase_28 AC 24 ms
6,940 KB
testcase_29 AC 24 ms
6,944 KB
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <set>
#include <cassert>
#define repeat(i,n) for (int i = 0; (i) < (n); ++(i))
using namespace std;
int main() {
    int n, m; cin >> n >> m;
    vector<vector<int> > g(n);
    repeat (i,m) {
        int a, b; cin >> a >> b; -- a; -- b;
        g[a].push_back(b);
        g[b].push_back(a);
    }
    const int root = 0;
    set<int> d1; for (int i : g[root]) d1.insert(i);
    set<int> d2; for (int i : g[root]) for (int j : g[i]) if (j != root) d2.insert(j);
    vector<vector<int> > g1(n); repeat (i,n) for (int j : g[i]) if (d1.count(j)) g1[i].push_back(j);
    bool ans = false;
    for (int i : d2) for (int j : d2) if (i < j) {
        assert (not g1[i].empty());
        assert (not g1[j].empty());
        if (g1[i].size() == 1 and g1[j].size() == 1 and g1[i][0] == g1[j][0]) continue;
        ans = true;
        goto done;
    }
done:
    cout << (ans ? "YES" : "NO") << endl;
    return 0;
}
0