結果
問題 | No.1400 すごろくで世界旅行 |
ユーザー | Kude |
提出日時 | 2021-02-19 23:43:48 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,228 bytes |
コンパイル時間 | 2,152 ms |
コンパイル使用メモリ | 204,072 KB |
実行使用メモリ | 13,880 KB |
最終ジャッジ日時 | 2024-09-16 23:47:37 |
合計ジャッジ時間 | 7,503 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,496 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 4 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 13 ms
5,376 KB |
testcase_07 | AC | 24 ms
5,376 KB |
testcase_08 | AC | 5 ms
5,376 KB |
testcase_09 | AC | 5 ms
5,376 KB |
testcase_10 | AC | 8 ms
5,376 KB |
testcase_11 | AC | 4 ms
5,376 KB |
testcase_12 | AC | 82 ms
5,376 KB |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
ソースコード
#include<bits/stdc++.h> using namespace std; #define rep(i,n) for(int i = 0; i < int(n); ++i) #define rrep(i,n) for(int i = int(n)-1; i >= 0; --i) #define all(x) (x).begin(), (x).end() #define rall(x) (x).rbegin(), (x).rend() template<class T> void chmax(T& a, const T& b) {a = max(a, b);} template<class T> void chmin(T& a, const T& b) {a = min(a, b);} using ll = long long; using P = pair<int,int>; using VI = vector<int>; using VVI = vector<VI>; using VL = vector<ll>; using VVL = vector<VL>; bitset<2000> e[2000], et[2000], now[2000], tmp[2000]; int main() { ios::sync_with_stdio(false); cin.tie(0); int v; ll d; cin >> v >> d; assert(v <= 2000); rep(i, v) rep(j, v) { char t; cin >> t; e[i][j] = t - '0'; } rep(i, v) now[i][i] = 1; while(d) { rep(i, v) rep(j, v) et[j][i] = e[i][j]; if (d & 1) { rep(i, v) tmp[i] = now[i]; rep(i, v) rep(j, v) now[i][j] = (tmp[i] & et[j]).any(); } rep(i, v) tmp[i] = e[i]; rep(i, v) rep(j, v) e[i][j] = (tmp[i] & et[j]).any(); d >>= 1; } bool ok = true; rep(i, v) rep(j, v) if (!now[i][j]) ok = false; cout << (ok ? "Yes\n" : "No\n"); }