結果

問題 No.387 ハンコ
ユーザー Pachicobue
提出日時 2018-11-12 03:59:53
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 1,191 ms / 5,000 ms
コード長 593 bytes
コンパイル時間 1,899 ms
コンパイル使用メモリ 197,032 KB
最終ジャッジ日時 2025-01-06 16:28:34
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
constexpr uint M = 100000;
constexpr uint L = 2 * M - 1;
std::bitset<L> pos, ans, mask;
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[i] = b; }
    for (uint i = 0; i < M; i++) {
        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;
}
0