結果
問題 | No.1400 すごろくで世界旅行 |
ユーザー | yosswi414 |
提出日時 | 2019-12-31 07:09:57 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,594 bytes |
コンパイル時間 | 1,570 ms |
コンパイル使用メモリ | 176,460 KB |
実行使用メモリ | 34,944 KB |
最終ジャッジ日時 | 2024-05-06 09:59:11 |
合計ジャッジ時間 | 3,374 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | AC | 92 ms
5,376 KB |
testcase_03 | AC | 4 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 4 ms
5,376 KB |
testcase_06 | AC | 15 ms
5,376 KB |
testcase_07 | AC | 82 ms
5,376 KB |
testcase_08 | AC | 5 ms
5,376 KB |
testcase_09 | AC | 9 ms
5,376 KB |
testcase_10 | AC | 9 ms
5,376 KB |
testcase_11 | AC | 14 ms
5,376 KB |
testcase_12 | AC | 140 ms
5,504 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using pi = pair<int, int>; const int inf = 1e6; signed main() { int v, d; cin >> v >> d; using bs = bitset<1000>; vector<bs> G(v); for (int i = 0; i < v; ++i) { string s; cin >> s; for (int j = 0; j < v; ++j) if (s[j] == '1') G[i].set(j); } vector<vector<pi>> D(v, vector<pi>(v, pi(inf,inf))); bool valid = true; int invind = -1; for (int src = 0; valid && src < v; ++src) { bs eprev, oprev, empbs, pos, prev, next; bool isdegz = true; for (int i = 0; isdegz&&i < v;++i) if (G[src][i]) isdegz = false; if (isdegz) { valid = false; break; } pos.set(src); prev.set(src); for (int mv = 0; mv < d;) { for (int i = 0; i < v;++i) if (pos[i]) next |= G[i]; pos = next & ~oprev; oprev |= next; next = empbs; ++mv; if (mv >= d) break; for (int i = 0; i < v; ++i) if (pos[i]) next |= G[i]; pos = next & ~eprev; eprev |= next; next = empbs; ++mv; if (mv >= d) break; } if(d%2){ for (int i = 0;valid&&i<v;++i) if (!oprev[i]) valid = false, invind = i; } else{ for (int i = 0;valid&&i<v;++i) if (!eprev[i]) valid = false, invind = i; } } cout << (valid ? "Yes" : ":(") << endl; }