結果

問題 No.961 Vibrant Fillumination
ユーザー koprickykopricky
提出日時 2019-12-07 23:45:18
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 255 ms / 5,000 ms
コード長 4,054 bytes
コンパイル時間 1,213 ms
コンパイル使用メモリ 87,608 KB
実行使用メモリ 10,236 KB
最終ジャッジ日時 2023-08-30 20:54:50
合計ジャッジ時間 15,841 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,552 KB
testcase_01 AC 2 ms
5,692 KB
testcase_02 AC 209 ms
10,220 KB
testcase_03 AC 216 ms
9,984 KB
testcase_04 AC 213 ms
9,988 KB
testcase_05 AC 216 ms
9,992 KB
testcase_06 AC 211 ms
10,092 KB
testcase_07 AC 212 ms
10,092 KB
testcase_08 AC 214 ms
10,128 KB
testcase_09 AC 214 ms
10,072 KB
testcase_10 AC 250 ms
9,996 KB
testcase_11 AC 249 ms
10,056 KB
testcase_12 AC 246 ms
10,148 KB
testcase_13 AC 242 ms
10,048 KB
testcase_14 AC 255 ms
9,984 KB
testcase_15 AC 232 ms
10,072 KB
testcase_16 AC 246 ms
10,072 KB
testcase_17 AC 237 ms
10,092 KB
testcase_18 AC 249 ms
10,096 KB
testcase_19 AC 248 ms
10,096 KB
testcase_20 AC 251 ms
10,040 KB
testcase_21 AC 240 ms
10,044 KB
testcase_22 AC 239 ms
10,044 KB
testcase_23 AC 234 ms
10,036 KB
testcase_24 AC 237 ms
10,056 KB
testcase_25 AC 248 ms
10,072 KB
testcase_26 AC 157 ms
9,992 KB
testcase_27 AC 179 ms
10,128 KB
testcase_28 AC 159 ms
10,048 KB
testcase_29 AC 184 ms
9,992 KB
testcase_30 AC 111 ms
9,992 KB
testcase_31 AC 78 ms
10,056 KB
testcase_32 AC 114 ms
10,052 KB
testcase_33 AC 2 ms
5,608 KB
testcase_34 AC 226 ms
10,176 KB
testcase_35 AC 219 ms
10,056 KB
testcase_36 AC 222 ms
10,236 KB
testcase_37 AC 227 ms
10,064 KB
testcase_38 AC 222 ms
10,132 KB
testcase_39 AC 220 ms
10,048 KB
testcase_40 AC 220 ms
10,048 KB
testcase_41 AC 223 ms
10,052 KB
testcase_42 AC 224 ms
10,032 KB
testcase_43 AC 223 ms
10,140 KB
testcase_44 AC 226 ms
10,168 KB
testcase_45 AC 223 ms
10,000 KB
testcase_46 AC 225 ms
10,064 KB
testcase_47 AC 222 ms
10,096 KB
testcase_48 AC 222 ms
10,144 KB
testcase_49 AC 228 ms
10,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

const int MAX_N = 50003;
const int MAX_Q = 50003;

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];
std::pair<int, int> query[MAX_Q];
unsigned long long h[MAX_N], ans[MAX_Q];
int X[2 * MAX_N], Y[2 * MAX_N], C[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 transform_query(std::vector<int>& index){
    for(int i = 0; i < Q; ++i){
        int p, q;
        std::cin >> p >> 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){
            // out of range
            ans[i] = 0ULL;
        }else{
            query[i] = {x, y}, index.push_back(i);
        }
    }
}

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;
    std::vector<int> index;
    transform_query(index);
    const int width = 8 * ceil(sqrt(N));
    std::sort(index.begin(), index.end(), [&](const int a, const int b){
        const int u = query[a].first / width, v = query[b].first / width;
        return (u == v) ? (query[a].second < query[b].second) : (u < v);
    });
    unsigned long long cur_hash = 0;
    int prv = -1, curx = -1, cury = -1;
    for(const int id : index){
        const int cur = query[id].first / width;
        if(prv != cur){
            // enter new block
            memset(C, 0, sizeof(C)), cur_hash = 0, prv = cur, curx = cur * width - 1, cury = -1;
        }
        // left
        while(curx > query[id].first){
            if(xborder[curx].lower <= cury && cury < xborder[curx].upper){
                const int c = xborder[curx].color;
                if(c > 0){
                    if(--C[c] == 0) cur_hash ^= h[c];
                }else{
                    if(++C[-c] == 1) cur_hash ^= h[-c];
                }
            }
            --curx;
        }
        // right
        while(curx < query[id].first){
            ++curx;
            if(xborder[curx].lower <= cury && cury < xborder[curx].upper){
                const int c = xborder[curx].color;
                if(c > 0){
                    if(++C[c] == 1) cur_hash ^= h[c];
                }else{
                    if(--C[-c] == 0) cur_hash ^= h[-c];
                }
            }
        }
        // up
        while(cury < query[id].second){
            ++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];
                }
            }
        }
        ans[id] = cur_hash;
    }
    for(int i = 0; i < Q; ++i){
        std::cout << ans[i] << "\n";
    }
    return 0;
}
0