結果
問題 | No.387 ハンコ |
ユーザー | vjudge1 |
提出日時 | 2024-10-13 14:44:02 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 740 bytes |
コンパイル時間 | 827 ms |
コンパイル使用メモリ | 81,276 KB |
実行使用メモリ | 8,448 KB |
最終ジャッジ日時 | 2024-10-13 14:44:09 |
合計ジャッジ時間 | 5,774 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 722 ms
8,320 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 575 ms
7,112 KB |
testcase_08 | AC | 595 ms
6,820 KB |
ソースコード
#include <iostream> #include <cstdio> #include <set> #include <map> #include <algorithm> #include <vector> #include <bitset> #define rep(i, l, r) for (int i = (l); i <= (r); i ++ ) #define per(i, r, l) for (int i = (r); i >= (l); i -- ) using namespace std; const int N = 1e5 + 1; int n, a[N], x; vector<int> vc[N]; bitset<2 * N> b, ans, tmp; int main() { scanf("%d", &n); rep(i, 0, n - 1) scanf("%d", &a[i]), vc[a[i]].push_back(i); rep(i, 0, n - 1) scanf("%d", &x), b[i] = x; rep(i, 0, n - 1) { if (vc[i].empty()) continue; for (auto j: vc[i]) tmp |= b << j; ans ^= tmp; tmp = 0; } rep(i, 0, 2 * n - 2) if (ans[i]) printf("ODD\n"); else printf("EVEN\n"); return 0; }