結果
問題 | No.1400 すごろくで世界旅行 |
ユーザー | 🍮かんプリン |
提出日時 | 2021-02-21 19:46:21 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,663 bytes |
コンパイル時間 | 1,767 ms |
コンパイル使用メモリ | 177,044 KB |
実行使用メモリ | 15,260 KB |
最終ジャッジ日時 | 2024-09-19 17:25:24 |
合計ジャッジ時間 | 26,263 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 450 ms
15,148 KB |
testcase_01 | AC | 546 ms
8,200 KB |
testcase_02 | AC | 2,760 ms
8,200 KB |
testcase_03 | AC | 1,447 ms
8,200 KB |
testcase_04 | WA | - |
testcase_05 | AC | 1,469 ms
8,200 KB |
testcase_06 | AC | 1,457 ms
8,332 KB |
testcase_07 | AC | 1,674 ms
8,200 KB |
testcase_08 | AC | 1,446 ms
8,200 KB |
testcase_09 | AC | 1,916 ms
8,200 KB |
testcase_10 | AC | 1,457 ms
8,200 KB |
testcase_11 | AC | 1,978 ms
8,328 KB |
testcase_12 | AC | 1,649 ms
8,332 KB |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
ソースコード
/** * @FileName a.cpp * @Author kanpurin * @Created 2021.02.21 19:46:13 **/ #include "bits/stdc++.h" using namespace std; typedef long long ll; const int MAX_LEN = 2000; struct bitmatrix{ vector<bitset<MAX_LEN>> bs1; vector<bitset<MAX_LEN>> bs2; bitmatrix(){ bs1.resize(MAX_LEN); bs2.resize(MAX_LEN); } void build() { for (int i = 0; i < MAX_LEN; i++) { for (int j = 0; j < MAX_LEN; j++) { if (bs1[i][j]) { bs2[j].set(i); } } } } bitmatrix operator*=(bitmatrix &bm) { bitmatrix ret; for (int i = 0; i < MAX_LEN; i++) { for (int j = 0; j < MAX_LEN; j++) { if ((this->bs1[i] & bm.bs2[j]).any()) { ret.bs1[i].set(j); } } } ret.build(); this->bs1 = ret.bs1; this->bs2 = ret.bs2; return ret; } }; template<typename T, typename U> T _pow(T k, U n, T unity = 1) { while (n > 0) { if (n & 1) { unity *= k; } k *= k; n >>= 1; } return unity; } int main() { int v;ll d;cin >> v >> d; bitmatrix bm; for (int i = 0; i < v; i++) { string s;cin >> s; bm.bs1[i] = bitset<MAX_LEN>(s); } bm.build(); bitmatrix I; for (int i = 0; i < MAX_LEN; i++) { I.bs1[i].set(i); I.bs2[i].set(i); } bm = _pow(bm,d,I); for (int i = 0; i < v; i++) { if (bm.bs1[i].count() != v) { puts("No"); return 0; } } puts("Yes"); return 0; }