結果

問題 No.1400 すごろくで世界旅行
ユーザー yosswi414yosswi414
提出日時 2019-12-29 19:20:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,217 bytes
コンパイル時間 1,814 ms
コンパイル使用メモリ 179,144 KB
実行使用メモリ 814,064 KB
最終ジャッジ日時 2024-05-06 09:56:21
合計ジャッジ時間 6,266 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 WA -
testcase_02 MLE -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using pi = pair<int, int>;

signed main() {
    int v, d;
    cin >> v >> d;
    vector<vector<bool>> G(v, vector<bool>(v, false));
    for (int i = 0; i < v; ++i) {
        string s;
        cin >> s;
        for (int j = 0; j < v; ++j) if (s[j] == '1')
                G[i][j] = true;
    }

    bool valid = true;
    for (int src = 0; valid && src < v; ++src) {
        queue<pi> que;
        vector<bool> rchbl(v, false);
        que.push(pi(src, 0));
        while (!que.empty()) {
            pi q = que.front();
            que.pop();
            //cerr << q.second << "\n";
            if ((q.first == src && q.second > 0 && d % q.second == 0) || (q.first != src && d % (q.second * 3) == 0)) {
                rchbl[q.first] = true;
            }
            if(q.second>=d)continue;
            for (int i = 0; i < v; ++i) if (i!=q.first&&G[i][q.first])
                    que.push(pi(i, q.second + 1));
            if (G[q.first][q.first]) que.push(pi(q.first, q.second + 1));
        }
        for (auto&& i : rchbl)
            if (!i) {
                valid = false;
                break;
            }
    }
    cout << (valid ? "Yes" : ":(") << endl;
}
0