結果

問題 No.387 ハンコ
ユーザー vjudge1vjudge1
提出日時 2024-10-13 10:36:10
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 935 ms / 5,000 ms
コード長 841 bytes
コンパイル時間 6,661 ms
コンパイル使用メモリ 277,664 KB
実行使用メモリ 10,024 KB
最終ジャッジ日時 2024-10-13 10:36:26
合計ジャッジ時間 15,323 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 882 ms
9,836 KB
testcase_01 AC 935 ms
9,964 KB
testcase_02 AC 652 ms
6,816 KB
testcase_03 AC 650 ms
6,820 KB
testcase_04 AC 296 ms
6,820 KB
testcase_05 AC 567 ms
7,680 KB
testcase_06 AC 743 ms
10,024 KB
testcase_07 AC 669 ms
6,820 KB
testcase_08 AC 653 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const int N = 200000;
int n, a[N], b[N];
vector<int> pos[N];
bitset<N> ans, mark;
inline void optimizeIO(void) {
    ios::sync_with_stdio(false);
    cin.tie(NULL), cout.tie(NULL);
}
int main(int argc, char const *argv[]) {
    optimizeIO(), cin >> n;
    for (int i = 0; i < n; i++) {
        cin >> a[i], pos[a[i]].push_back(i);
    }
    for (int i = 0; i < n; i++) {
        cin >> b[i], mark[i] = b[i];
    }
    bitset<N> cur;
    for (int i = 0; i < N; i++) { // color.
        if (pos[i].empty()) continue;
        for (auto &j : pos[i]) {
            cur |= mark << j;
        }
        ans ^= cur, cur = 0;
    }
    for (int i = 0; i < 2 * n - 1; i++) {
        if (ans[i]) {
            cout << "ODD\n";
        } else {
            cout << "EVEN\n";
        }
    }
    return 0;
}
0