結果

問題 No.961 Vibrant Fillumination
ユーザー PachicobuePachicobue
提出日時 2019-10-20 20:13:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 5,072 bytes
コンパイル時間 2,631 ms
コンパイル使用メモリ 215,748 KB
実行使用メモリ 8,348 KB
最終ジャッジ日時 2023-08-30 20:38:42
合計ジャッジ時間 37,958 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,352 KB
testcase_01 WA -
testcase_02 AC 626 ms
8,116 KB
testcase_03 AC 628 ms
8,124 KB
testcase_04 AC 656 ms
8,196 KB
testcase_05 AC 636 ms
8,072 KB
testcase_06 AC 623 ms
8,064 KB
testcase_07 AC 636 ms
8,120 KB
testcase_08 AC 630 ms
8,124 KB
testcase_09 AC 638 ms
8,196 KB
testcase_10 AC 850 ms
8,052 KB
testcase_11 AC 842 ms
8,032 KB
testcase_12 AC 855 ms
8,060 KB
testcase_13 AC 827 ms
7,980 KB
testcase_14 AC 859 ms
8,132 KB
testcase_15 AC 773 ms
8,124 KB
testcase_16 AC 840 ms
8,056 KB
testcase_17 AC 768 ms
8,072 KB
testcase_18 AC 847 ms
8,056 KB
testcase_19 AC 850 ms
8,084 KB
testcase_20 AC 849 ms
8,008 KB
testcase_21 AC 773 ms
8,188 KB
testcase_22 AC 786 ms
8,016 KB
testcase_23 AC 771 ms
7,988 KB
testcase_24 AC 807 ms
8,032 KB
testcase_25 AC 837 ms
8,116 KB
testcase_26 AC 404 ms
8,008 KB
testcase_27 AC 357 ms
8,316 KB
testcase_28 AC 419 ms
8,032 KB
testcase_29 AC 390 ms
7,984 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 1 ms
4,356 KB
testcase_34 AC 684 ms
8,040 KB
testcase_35 AC 635 ms
8,072 KB
testcase_36 AC 671 ms
8,192 KB
testcase_37 AC 677 ms
8,120 KB
testcase_38 AC 646 ms
8,004 KB
testcase_39 AC 655 ms
8,124 KB
testcase_40 AC 644 ms
8,180 KB
testcase_41 AC 654 ms
8,176 KB
testcase_42 AC 669 ms
8,024 KB
testcase_43 AC 671 ms
8,008 KB
testcase_44 AC 689 ms
8,116 KB
testcase_45 AC 661 ms
7,992 KB
testcase_46 AC 686 ms
8,060 KB
testcase_47 AC 667 ms
8,036 KB
testcase_48 AC 677 ms
8,024 KB
testcase_49 AC 681 ms
7,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#pragma GCC diagnostic ignored "-Wsign-compare"
#pragma GCC diagnostic ignored "-Wsign-conversion"

#define NDEBUG
using i32 = int32_t;
using i64 = int64_t;
using u32 = uint32_t;
using u64 = uint64_t;
using uint = unsigned int;
using usize = std::size_t;
using ll = long long;
using ull = unsigned long long;
using ld = long double;
template<typename T> constexpr T popcount(const T u) { return u ? static_cast<T>(__builtin_popcountll(static_cast<u64>(u))) : static_cast<T>(0); }
template<typename T> constexpr T log2p1(const T u) { return u ? static_cast<T>(64 - __builtin_clzll(static_cast<u64>(u))) : static_cast<T>(0); }
template<typename T> constexpr T msbp1(const T u) { return log2p1(u); }
template<typename T> constexpr T lsbp1(const T u) { return __builtin_ffsll(u); }
template<typename T> constexpr T clog(const T u) { return u ? log2p1(u - 1) : static_cast<T>(u); }
template<typename T> constexpr bool ispow2(const T u) { return u and (static_cast<u64>(u) & static_cast<u64>(u - 1)) == 0; }
template<typename T> constexpr T ceil2(const T u) { return static_cast<T>(1) << clog(u); }
template<typename T> constexpr T floor2(const T u) { return u == 0 ? static_cast<T>(0) : static_cast<T>(1) << (log2p1(u) - 1); }
template<typename T> constexpr bool btest(const T mask, const usize ind) { return ((static_cast<u64>(mask) >> ind) & static_cast<u64>(1)); }
template<typename T> constexpr T bcut(const T mask, const usize ind) { return ind == 0 ? static_cast<T>(0) : static_cast<T>((static_cast<u64>(mask) << (64 - ind)) >> (64 - ind)); }
template<typename T> bool chmin(T& a, const T& b) { return (a > b ? a = b, true : false); }
template<typename T> bool chmax(T& a, const T& b) { return (a < b ? a = b, true : false); }
constexpr unsigned int mod                  = 1000000007;
template<typename T> constexpr T inf_v      = std::numeric_limits<T>::max() / 4;
template<typename Real> constexpr Real pi_v = Real{3.141592653589793238462643383279502884};
template<typename T>
T read()
{
    T v;
    return std::cin >> v, v;
}
template<typename T>
std::vector<T> read_vec(const std::size_t size)
{
    std::vector<T> v(size);
    for (auto& e : v) { std::cin >> e; }
    return v;
}
template<typename... Types>
auto read_vals() { return std::tuple<std::decay_t<Types>...>{read<Types>()...}; }
#define SHOW(...) static_cast<void>(0)
template<typename T>
std::vector<T> make_v(const std::size_t size, T v) { return std::vector<T>(size, v); }
template<class... Args>
auto make_v(const std::size_t size, Args... args) { return std::vector<decltype(make_v(args...))>(size, make_v(args...)); }
int main()
{
    const usize N = read<usize>();
    std::vector<ull> h(N + 1, 0ULL);
    for (usize i = 1; i <= N; i++) { h[i] = read<ull>(); }

    const usize L = 2 * N;
    std::vector<usize> a(N + 1, 0), b(N + 1, 0), c(N + 1, L), d(N + 1, L), e(N + 1, 0);
    std::vector<int> lr(L + 1, 0), du(L + 1, 0);  // 左右矢印,上下矢印
    for (int i = 1; i <= N; i++) {
        std::tie(a[i], b[i], c[i], d[i], e[i]) = read_vals<usize, usize, usize, usize, usize>();
        lr[++a[i]] = du[++b[i]] = i, lr[++c[i]] = du[++d[i]] = -i;
    }

    const usize Q = read<usize>();
    std::vector<usize> p(Q), q(Q);
    for (usize i = 0; i < Q; i++) { p[i] = read<usize>() + 1, q[i] = read<usize>() + 1; }

    constexpr usize BS = 300;
    std::vector<usize> inds(Q);
    std::iota(inds.begin(), inds.end(), 0UL);
    std::sort(inds.begin(), inds.end(), [&](const usize i, const usize j) {
        const usize bi = p[i] / BS, bj = p[j] / BS;
        return bi != bj ? bi < bj : q[i] != q[j] ? q[i] < q[j] : p[i] < p[j];
    });

    std::vector<usize> color_cnt(N + 1, 0);
    ull hash      = 0;
    auto add_film = [&](const usize i) {  // フィルムiを追加
        const usize c = e[i];
        if (color_cnt[c]++ == 0) { hash ^= h[c]; }
    };
    auto del_film = [&](const usize i) {  // フィルム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(i); }
        if (i < 0) { del_film(-i); }
    };

    std::vector<ull> answer(Q);
    usize x = 0, y = 0;
    auto von = [&](const usize x, const usize y) { return b[std::abs(lr[x])] <= y and y < d[std::abs(lr[x])]; };
    auto hon = [&](const usize x, const usize y) { return a[std::abs(du[y])] <= x and x < c[std::abs(du[y])]; };
    for (const usize i : inds) {
        const usize nx = p[i], ny = q[i];  // 次のクエリ点
        while (x < nx) {
            x++;
            if (von(x, y)) { add_del_film(lr[x]); }
        }
        while (x > nx) {
            if (von(x, y)) { add_del_film(-lr[x]); }
            x--;
        }
        while (y < ny) {
            y++;
            if (hon(x, y)) { add_del_film(du[y]); }
        }
        while (y > ny) {
            if (hon(x, y)) { add_del_film(-du[y]); }
            y--;
        }
        answer[i] = hash;
    }

    for (usize i = 0; i < Q; i++) { std::cout << answer[i] << std::endl; }

    return 0;
}
0