結果

問題 No.1400 すごろくで世界旅行
ユーザー yosswi414yosswi414
提出日時 2019-12-31 12:17:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,719 bytes
コンパイル時間 1,634 ms
コンパイル使用メモリ 174,800 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 09:59:36
合計ジャッジ時間 4,013 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

bs operator^(const bs& lhs, const bs& rhs) {
    bs res(lhs);
    int s = res.size();
    for (int i = 0; i < s; ++i) res[i] = res[i] ^ rhs[i];
    return res;
}

bs& operator|=(bs& lhs, const bs& rhs){
    int s = lhs.size();
    for (int i = 0; i < s; ++i) lhs[i] = lhs[i] | rhs[i];
    return lhs;
}

void bset(bs& v, int k) {v[k] = true;}

bool any(const bs& v) {
    for(const auto& i:v)
        if (i) return true;
    return false;
}

int count(const bs& v){
    int r = 0;
    for (const auto& i : v)
        if (i) ++r;
    return r;
}

signed main() {
    int v, d;
    cin >> v >> d;
    vector<bs> G(v, bs(v,false));

    for (int i = 0; i < v; ++i) {
        string s;
        cin >> s;
        for (int j = 0; j < v; ++j)
            if (s[j] == '1') bset(G[i],j);
    }
    bool valid = true;

    for (int src = 0; valid && src < v; ++src) {
        if (!any(G[src])) {
            valid = false;
            break;
        }
        
        bs pos(v,false), onext(pos), enext(pos);
        bset(pos,src);
        bset(enext,src);
        int mv = 0;
        while (mv < d) {
            for (int i = 0; i < v;++i)
                if (pos[i]) onext |= G[i];
            if (!any(pos ^ onext)) break;
            pos = onext;
            ++mv;
            if (mv >= d) break;
            for (int i = 0; i < v; ++i)
                if (pos[i]) enext |= G[i];
            if (!any(pos ^ enext)) break;
            pos = enext;
            ++mv;
            if (mv >= d) break;
        }
        if((d%2 ? count(onext) : count(enext)) < v) valid = false;
    }
    cout << (valid ? "Yes" : ":(") << endl;
}
0