結果
問題 | No.1400 すごろくで世界旅行 |
ユーザー | 🍮かんプリン |
提出日時 | 2021-02-21 20:27:17 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2,223 ms / 3,153 ms |
コード長 | 1,722 bytes |
コンパイル時間 | 1,643 ms |
コンパイル使用メモリ | 177,984 KB |
実行使用メモリ | 8,332 KB |
最終ジャッジ日時 | 2024-09-19 17:54:48 |
合計ジャッジ時間 | 29,566 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 506 ms
8,204 KB |
testcase_01 | AC | 629 ms
8,200 KB |
testcase_02 | AC | 756 ms
8,200 KB |
testcase_03 | AC | 1,633 ms
8,200 KB |
testcase_04 | AC | 878 ms
8,248 KB |
testcase_05 | AC | 1,379 ms
8,200 KB |
testcase_06 | AC | 1,616 ms
8,300 KB |
testcase_07 | AC | 1,621 ms
8,332 KB |
testcase_08 | AC | 1,624 ms
8,200 KB |
testcase_09 | AC | 1,748 ms
8,204 KB |
testcase_10 | AC | 1,624 ms
8,300 KB |
testcase_11 | AC | 1,501 ms
8,196 KB |
testcase_12 | AC | 1,839 ms
8,208 KB |
testcase_13 | AC | 1,582 ms
8,320 KB |
testcase_14 | AC | 2,148 ms
8,320 KB |
testcase_15 | AC | 2,223 ms
8,332 KB |
testcase_16 | AC | 297 ms
8,320 KB |
testcase_17 | AC | 283 ms
8,320 KB |
testcase_18 | AC | 1,940 ms
8,320 KB |
testcase_19 | AC | 259 ms
8,200 KB |
testcase_20 | AC | 259 ms
8,196 KB |
ソースコード
/** * @FileName a.cpp * @Author kanpurin * @Created 2021.02.21 20:27:10 **/ #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; d = min(2LL*v,d); bitmatrix bm; for (int i = 0; i < v; i++) { string s;cin >> s; reverse(s.begin(), s.end()); 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; }