結果
問題 | No.1400 すごろくで世界旅行 |
ユーザー | yosswi414 |
提出日時 | 2019-12-29 22:55:31 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,384 bytes |
コンパイル時間 | 2,003 ms |
コンパイル使用メモリ | 180,792 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-05-06 09:57:46 |
合計ジャッジ時間 | 8,559 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
9,676 KB |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 51 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 5 ms
5,376 KB |
testcase_06 | AC | 1,523 ms
5,376 KB |
testcase_07 | TLE | - |
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 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using pi = pair<int, int>; const int inf = 1e6; 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; } vector<vector<pi>> D(v, vector<pi>(v, pi(inf,inf))); bool valid = true; for (int src = 0; valid && src < v; ++src) { queue<pi> que; que.push(pi(src, 0)); vector<bool> evis(v, false), ovis(evis); while (!que.empty()) { pi q(que.front()); que.pop(); if(q.second%2){ ovis[q.first] = true; D[q.first][src].first = min(D[q.first][src].first, q.second); } else{ evis[q.first] = true; D[q.first][src].second = min(D[q.first][src].second, q.second); } D[src][q.first] = D[q.first][src]; for (int i = 0; i < v; ++i) if (!(q.second%2?evis:ovis)[i] && G[q.first][i]) que.push(pi(i, q.second + 1)); } for (int i = 0; valid && i < v;++i){ if (!(d % 2 ? ovis : evis)[i]) valid = false; if ((d % 2 ? D[src][i].first : D[src][i].second) > d) valid = false; } } cout << (valid ? "Yes" : ":("); }