結果

問題 No.961 Vibrant Fillumination
ユーザー koprickykopricky
提出日時 2019-12-08 02:11:49
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 5,130 bytes
コンパイル時間 1,046 ms
コンパイル使用メモリ 87,520 KB
実行使用メモリ 119,948 KB
最終ジャッジ日時 2023-08-27 15:01:26
合計ジャッジ時間 16,257 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <numeric>
#include <cmath>
#include <cstring>

const int MAX_N = 50003;
const int MAX_Q = 50003;
const int WIDTH = 800;
const int LEN = 2 * MAX_N / WIDTH + 1;

struct info {
    int lower, upper, color;
    info(){}
    info(const int _lower, const int _upper, const int _color)
        : lower(_lower), upper(_upper), color(_color){}
};

info xborder[2 * MAX_N], yborder[2 * MAX_N];
unsigned long long h[MAX_N], memo[LEN][LEN];
unsigned short cnt[LEN][LEN][2 * WIDTH], kp[2 * WIDTH], trans[MAX_N];
std::vector<unsigned short> color_table[LEN][LEN];
int X[2 * MAX_N], Y[2 * MAX_N], C[MAX_N];
bool used[MAX_N];
int N, Q;

void transform_rectangle(){
    std::vector<std::vector<int> > tmp(N);
    std::vector<int> idX(2 * N, 0), idY(2 * N, 0);
    for(int i = 0; i < N; ++i){
        int a, b, c, d, e;
        std::cin >> a >> b >> c >> d >> e;
        X[2 * i] = a, X[2 * i + 1] = c, Y[2 * i] = b, Y[2 * i + 1] = d;
        tmp[i] = {a, b, c, d, e};
    }
    std::sort(X, X + 2 * N), std::sort(Y, Y + 2 * N);
    for(const std::vector<int>& in : tmp){
        const int a = std::lower_bound(X, X + 2 * N, in[0]) - X + idX[in[0]]++;
        const int b = std::lower_bound(Y, Y + 2 * N, in[1]) - Y + idY[in[1]]++;
        const int c = std::lower_bound(X, X + 2 * N, in[2]) - X + idX[in[2]]++;
        const int d = std::lower_bound(Y, Y + 2 * N, in[3]) - Y + idY[in[3]]++;
        const int e = in[4];
        xborder[a] = {b, d, e}, xborder[c] = {b, d, -e}, yborder[b] = {a, c, e}, yborder[d] = {a, c, -e};
    }
}

void pre_calc(){
    unsigned long long cur_hash = 0;
    int curx = -1, cury = -1;
    const int length = (2 * N - 2) / WIDTH + 1;
    for(int i = 0; i < length; ++i){
        for(int j = 0; j < length; ++j){
            std::vector<int> color;
            auto& ct = color_table[i][j];
            const int stx = i * WIDTH + 1, sty = j * WIDTH + 1;
            for(int curx = stx; curx < std::min((i + 1) * WIDTH, 2 * N - 1); ++curx){
                const int c = xborder[curx].color;
                if(c > 0){
                    if(!used[c]) ct.push_back(c), used[c] = true;
                }else{
                    if(!used[-c]) ct.push_back(-c), used[-c] = true;
                }
            }
            for(int cury = sty; cury < std::min((j + 1) * WIDTH, 2 * N - 1); ++cury){
                const int c = yborder[cury].color;
                if(c > 0){
                    if(!used[c]) ct.push_back(c), used[c] = true;
                }else{
                    if(!used[-c]) ct.push_back(-c), used[-c] = true;
                }
            }
            for(const int c : ct) used[c] = false;
        }
    }
    for(int i = 0; i < length; ++i){
        memset(C, 0, sizeof(C)), cur_hash = 0, curx = i * WIDTH, cury = -1;
        for(int j = 0; j < length; ++j){
            while(cury < j * WIDTH){
                ++cury;
                if(yborder[cury].lower <= curx && curx < yborder[cury].upper){
                    const int c = yborder[cury].color;
                    if(c > 0){
                        if(++C[c] == 1) cur_hash ^= h[c];
                    }else{
                        if(--C[-c] == 0) cur_hash ^= h[-c];
                    }
                }
            }
            memo[i][j] = cur_hash;
            for(int k = 0; k < (int)color_table[i][j].size(); ++k){
                cnt[i][j][k] = C[color_table[i][j][k]];
            }
        }
    }
}

unsigned long long query(const int p, const int q){
    const int x = std::upper_bound(X, X + 2 * N, p) - X - 1;
    const int y = std::upper_bound(Y, Y + 2 * N, q) - Y - 1;
    if(x < 0 || x >= 2 * N - 1 || y < 0 || y >= 2 * N - 1) return 0ULL;
    const int zx = x / WIDTH, zy = y / WIDTH;
    unsigned long long cur_hash = memo[zx][zy];
    auto ct = color_table[zx][zy];
    for(int i = 0; i < (int)ct.size(); ++i){
        kp[trans[ct[i]] = i] = cnt[zx][zy][i];
    }
    const int stx = zx * WIDTH + 1, sty = zy * WIDTH + 1;
    int curx = stx - 1, cury = sty - 1;
    while(curx < x){
        ++curx;
        if(xborder[curx].lower <= cury && cury < xborder[curx].upper){
            const int c = xborder[curx].color;
            if(c > 0){
                if(++kp[trans[c]] == 1) cur_hash ^= h[c];
            }else{
                if(--kp[trans[-c]] == 0) cur_hash ^= h[-c];
            }
        }
    }
    while(cury < y){
        ++cury;
        if(yborder[cury].lower <= curx && curx < yborder[cury].upper){
            const int c = yborder[cury].color;
            if(c > 0){
                if(++kp[trans[c]] == 1) cur_hash ^= h[c];
            }else{
                if(--kp[trans[-c]] == 0) cur_hash ^= h[-c];
            }
        }
    }
    return cur_hash;
}

int main()
{
    std::cin.tie(0);
    std::ios::sync_with_stdio(false);
    std::cin >> N;
    for(int i = 1; i <= N; ++i){
        std::cin >> h[i];
    }
    transform_rectangle();
    std::cin >> Q;
    pre_calc();
    for(int i = 0; i < 10; ++i){
        int p, q;
        std::cin >> p >> q;
        std::cout << query(p, q) << "\n";
    }
    return 0;
}
0