結果

問題 No.961 Vibrant Fillumination
ユーザー PachicobuePachicobue
提出日時 2019-10-21 17:34:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 3,076 bytes
コンパイル時間 971 ms
コンパイル使用メモリ 79,428 KB
実行使用メモリ 331,364 KB
最終ジャッジ日時 2023-08-30 20:52:16
合計ジャッジ時間 63,440 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 WA -
testcase_02 AC 1,221 ms
331,184 KB
testcase_03 AC 1,159 ms
331,128 KB
testcase_04 AC 1,166 ms
331,328 KB
testcase_05 AC 1,173 ms
331,088 KB
testcase_06 AC 1,162 ms
331,176 KB
testcase_07 AC 1,161 ms
331,160 KB
testcase_08 AC 1,156 ms
331,112 KB
testcase_09 AC 1,191 ms
331,092 KB
testcase_10 AC 1,509 ms
331,080 KB
testcase_11 AC 1,488 ms
331,292 KB
testcase_12 AC 1,509 ms
331,108 KB
testcase_13 AC 1,529 ms
331,180 KB
testcase_14 AC 1,491 ms
331,188 KB
testcase_15 AC 1,442 ms
331,364 KB
testcase_16 AC 1,478 ms
331,092 KB
testcase_17 AC 1,469 ms
331,092 KB
testcase_18 AC 1,485 ms
331,096 KB
testcase_19 AC 1,499 ms
331,140 KB
testcase_20 AC 1,520 ms
331,176 KB
testcase_21 AC 1,463 ms
331,264 KB
testcase_22 AC 1,469 ms
331,264 KB
testcase_23 AC 1,440 ms
331,184 KB
testcase_24 AC 1,424 ms
331,176 KB
testcase_25 AC 1,501 ms
331,116 KB
testcase_26 AC 916 ms
331,300 KB
testcase_27 AC 955 ms
331,116 KB
testcase_28 AC 962 ms
331,160 KB
testcase_29 AC 1,040 ms
331,084 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 2 ms
4,380 KB
testcase_34 AC 1,236 ms
331,180 KB
testcase_35 AC 1,197 ms
331,132 KB
testcase_36 AC 1,221 ms
331,128 KB
testcase_37 AC 1,224 ms
331,352 KB
testcase_38 AC 1,198 ms
331,144 KB
testcase_39 AC 1,181 ms
331,176 KB
testcase_40 AC 1,183 ms
331,092 KB
testcase_41 AC 1,199 ms
331,184 KB
testcase_42 AC 1,230 ms
331,188 KB
testcase_43 AC 1,225 ms
331,156 KB
testcase_44 AC 1,246 ms
331,180 KB
testcase_45 AC 1,205 ms
331,136 KB
testcase_46 AC 1,212 ms
331,096 KB
testcase_47 AC 1,229 ms
331,144 KB
testcase_48 AC 1,275 ms
331,108 KB
testcase_49 AC 1,288 ms
331,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
using ull            = unsigned long long;
using usize          = std::size_t;
constexpr usize NMAX = 50000;
constexpr usize LMAX = 2 * NMAX;
ull h[NMAX + 1];
usize a[NMAX + 1], b[NMAX + 1], c[NMAX + 1], d[NMAX + 1], e[NMAX + 1];
int lr[LMAX + 1], du[LMAX + 1];
constexpr usize BS = 1000;
constexpr usize BN = (LMAX + BS) / BS;
ull hashs[BN][BN];
std::vector<usize> cs[BN][BN], cnt[BN][BN];

usize color_cnt[NMAX + 1];
ull hash;
int main()
{
    std::cin.tie(nullptr), std::ios::sync_with_stdio(false);
    usize N;
    std::cin >> N;
    for (usize i = 1; i <= N; i++) { std::cin >> h[i]; }

    const usize L = 2 * N;
    for (usize i = 1; i <= N; i++) {
        std::cin >> a[i] >> b[i] >> c[i] >> d[i] >> e[i];
        lr[++a[i]] = du[++b[i]] = int(i), lr[++c[i]] = du[++d[i]] = -int(i);
    }
    for (usize x = 0; x < L; x++) {
        for (usize yn = 0; yn < BN; yn++) {
            const usize xind = (usize)std::abs(lr[x + 1]);
            if (xind != 0) { cs[x / BS][yn].push_back(e[xind]); }
        }
    }
    for (usize xn = 0; xn < BN; xn++) {
        for (usize y = 0; y < L; y++) {
            const usize yind = (usize)std::abs(du[y + 1]);
            if (yind != 0) { cs[xn][y / BS].push_back(e[yind]); }
        }
    }
    auto von      = [&](const usize x, const usize y) { return b[(usize)std::abs(lr[x])] <= y and y < d[(usize)std::abs(lr[x])]; };
    auto hon      = [&](const usize x, const usize y) { return a[(usize)std::abs(du[y])] <= x and x < c[(usize)std::abs(du[y])]; };
    auto add_film = [&](const usize i) {
        const usize c = e[i];
        if (color_cnt[c]++ == 0) { hash ^= h[c]; }
    };
    auto del_film = [&](const usize i) {
        const usize c = e[i];
        if (--color_cnt[c] == 0) { hash ^= h[c]; }
    };
    auto add_del_film = [&](const int i) {
        if (i > 0) { add_film(usize(i)); }
        if (i < 0) { del_film(usize(-i)); }
    };
    for (usize i = 0; i < BN; i++) {
        hash    = 0, std::fill(color_cnt, color_cnt + N + 1, 0);
        usize x = i * BS, y = 0;
        for (usize j = 0; j < BN; j++) {
            for (const usize ci : cs[i][j]) { cnt[i][j].push_back(color_cnt[ci]); }
            hashs[i][j]    = hash;
            const usize ny = std::min((j + 1) * BS, L);
            for (; y < ny; y++) {
                if (hon(x, y + 1)) { add_del_film(du[y + 1]); }
            }
        }
    }
    usize Q;
    std::cin >> Q;
    for (usize i = 0, p, q; i < Q; i++) {
        std::cin >> p >> q, p++, q++;
        const usize xi = p / BS, yi = q / BS;
        usize x = xi * BS, y = yi * BS;
        hash = hashs[xi][yi];
        for (usize i = 0; i < cs[xi][yi].size(); i++) {
            const usize ci = cs[xi][yi][i];
            color_cnt[ci]  = cnt[xi][yi][i];
        }
        for (; x < p; x++) {
            if (von(x + 1, y)) { add_del_film(lr[x + 1]); }
        }
        for (; y < q; y++) {
            if (hon(x, y + 1)) { add_del_film(du[y + 1]); }
        }
        std::cout << hash << "\n";
    }

    return 0;
}
0