結果

問題 No.408 五輪ピック
ユーザー Ymgch_KYmgch_K
提出日時 2018-01-16 21:25:08
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,118 bytes
コンパイル時間 557 ms
コンパイル使用メモリ 55,224 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-06 13:57:57
合計ジャッジ時間 1,806 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 11 ms
5,376 KB
testcase_06 AC 11 ms
5,376 KB
testcase_07 AC 14 ms
5,376 KB
testcase_08 AC 10 ms
5,376 KB
testcase_09 AC 12 ms
5,376 KB
testcase_10 AC 9 ms
5,376 KB
testcase_11 AC 8 ms
5,376 KB
testcase_12 AC 15 ms
5,376 KB
testcase_13 AC 12 ms
5,376 KB
testcase_14 AC 4 ms
5,376 KB
testcase_15 AC 10 ms
5,376 KB
testcase_16 AC 12 ms
5,376 KB
testcase_17 AC 14 ms
5,376 KB
testcase_18 AC 16 ms
5,376 KB
testcase_19 AC 18 ms
5,376 KB
testcase_20 AC 6 ms
5,376 KB
testcase_21 AC 4 ms
5,376 KB
testcase_22 AC 10 ms
5,376 KB
testcase_23 AC 25 ms
5,888 KB
testcase_24 WA -
testcase_25 AC 11 ms
5,376 KB
testcase_26 AC 18 ms
5,760 KB
testcase_27 AC 10 ms
5,376 KB
testcase_28 AC 11 ms
5,376 KB
testcase_29 AC 11 ms
5,376 KB
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:11:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   11 |         scanf("%d%d", &n, &m);
      |         ~~~~~^~~~~~~~~~~~~~~~
main.cpp:15:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   15 |                 scanf("%d%d", &a, &b);
      |                 ~~~~~^~~~~~~~~~~~~~~~

ソースコード

diff #

#include <cstdio>
#include <algorithm>
#include <vector>
#include <queue>
using namespace std;

struct state { int node, prev, prevprev, step; };

int main() {
        int n, m;
        scanf("%d%d", &n, &m);
        vector<vector<int>> g(n);
        for (int i = 0; i < m; i ++) {
                int a, b;
                scanf("%d%d", &a, &b);
                a --, b --;
                g[a].push_back(b);
                g[b].push_back(a);
        }
        vector<vector<bool>> used(n, vector<bool> (6));
        queue<state> q;
        q.push({ 0, -1, -1, 0 });
        used[0][0] = true;
        while (!q.empty()) {
                state p = q.front(); q.pop();
                int u = p.node, s = p.step, prev = p.prev, prevprev = p.prevprev;
                if (s == 5) continue;
                for (auto v : g[u]) if (!used[v][s + 1]) {
                        if ((s + 1 != 5 && v == 0) || v == prevprev) continue;
                        used[v][s + 1] = true;
                        q.push({v, u, prev, s + 1});
                }
        }
        puts(used[0][5] ? "YES" : "NO");
        return 0;
}
0