結果
問題 | No.1717 Levi-Civita Triangle |
ユーザー | nok0 |
提出日時 | 2021-08-04 23:12:44 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,185 bytes |
コンパイル時間 | 3,229 ms |
コンパイル使用メモリ | 229,356 KB |
実行使用メモリ | 13,756 KB |
最終ジャッジ日時 | 2024-09-23 03:46:25 |
合計ジャッジ時間 | 12,875 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,756 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 4 ms
6,944 KB |
testcase_05 | AC | 35 ms
6,944 KB |
testcase_06 | AC | 457 ms
6,944 KB |
testcase_07 | TLE | - |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 44 ms
6,940 KB |
testcase_11 | AC | 413 ms
6,944 KB |
testcase_12 | AC | 1,672 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 4 ms
6,940 KB |
testcase_15 | AC | 28 ms
6,940 KB |
testcase_16 | AC | 336 ms
6,940 KB |
testcase_17 | TLE | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
ソースコード
#pragma GCC target("avx2") #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") #include <bits/stdc++.h> using namespace std; int main() { int N; scanf("%d", &N); bitset<200010> bit_0, bit_1, bit_2; int a; for(int i = 0; i < 2 * N + 1; i++) { scanf("%d", &a); // cout << a << endl; if(a == 0) { bit_0.set(i); } else if(a == 1) { bit_1.set(i); } else { bit_2.set(i); } } // cout << -1 << " 0 " << bit_0.any() << endl; // cout << -1 << " 1 " << bit_1.any() << endl; // cout << -1 << " 2 " << bit_2.any() << endl; bitset<200010> new_bit_0, new_bit_1, new_bit_2, bit_01, bit_10; for(int i = 0; i < N; i++) { bit_01 = (bit_0 & (bit_1 >> 1)); new_bit_1 = (bit_01 & (bit_2 >> 2)) | (bit_1 & (bit_2 >> 1) & (bit_0 >> 2)) | (bit_2 & (bit_01 >> 1)); bit_10 = (bit_1 & (bit_0 >> 1)); new_bit_2 = (bit_0 & (bit_2 >> 1) & (bit_1 >> 2)) | (bit_2 & (bit_10 >> 1)) | (bit_10 & (bit_2 >> 2)); swap(bit_1, new_bit_1); swap(bit_2, new_bit_2); bit_0 = (bit_1 ^ bit_2).flip(); } if(bit_1.any()) putchar('1'); else if(bit_2.any()) putchar('2'); else putchar('0'); return 0; }