結果
問題 | No.387 ハンコ |
ユーザー | Pachicobue |
提出日時 | 2018-11-12 03:54:21 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 689 bytes |
コンパイル時間 | 742 ms |
コンパイル使用メモリ | 77,056 KB |
実行使用メモリ | 8,064 KB |
最終ジャッジ日時 | 2024-05-09 18:38:52 |
合計ジャッジ時間 | 13,349 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
ソースコード
#include <iostream> #include <bitset> #include <vector> constexpr uint M = 100000; constexpr uint L = 2 * M - 1; std::bitset<L> pos, ans; std::vector<uint> off[M]; int main() { uint N; std::cin >> N; for (uint i = 0, a; i < N; i++) { std::cin >> a, off[a - 1].push_back(i); } for (uint i = 0, b; i < N; i++) { std::cin >> b, pos |= (b << i); } std::bitset<L> mask; for (uint i = 0; i < M; i++) { if (off[i].empty()) { continue; } mask.reset(); for (const uint o : off[i]) { mask |= (pos << o); } ans ^= mask; } for (uint i = 0; i < 2 * N - 1; i++) { std::cout << (ans.test(i) ? "ODD" : "EVEN") << std::endl; } return 0; }