結果

問題 No.961 Vibrant Fillumination
ユーザー koprickykopricky
提出日時 2019-12-07 22:49:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 268 ms / 5,000 ms
コード長 4,273 bytes
コンパイル時間 1,371 ms
コンパイル使用メモリ 88,404 KB
実行使用メモリ 10,344 KB
最終ジャッジ日時 2023-08-30 20:50:00
合計ジャッジ時間 16,636 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,704 KB
testcase_01 AC 2 ms
5,692 KB
testcase_02 AC 218 ms
10,180 KB
testcase_03 AC 221 ms
10,052 KB
testcase_04 AC 225 ms
10,052 KB
testcase_05 AC 225 ms
10,100 KB
testcase_06 AC 217 ms
10,176 KB
testcase_07 AC 222 ms
10,152 KB
testcase_08 AC 221 ms
10,168 KB
testcase_09 AC 222 ms
10,168 KB
testcase_10 AC 264 ms
10,036 KB
testcase_11 AC 263 ms
10,096 KB
testcase_12 AC 264 ms
10,048 KB
testcase_13 AC 261 ms
10,240 KB
testcase_14 AC 265 ms
10,168 KB
testcase_15 AC 248 ms
10,068 KB
testcase_16 AC 257 ms
10,164 KB
testcase_17 AC 249 ms
10,056 KB
testcase_18 AC 267 ms
10,048 KB
testcase_19 AC 265 ms
10,176 KB
testcase_20 AC 263 ms
10,344 KB
testcase_21 AC 253 ms
10,272 KB
testcase_22 AC 254 ms
10,048 KB
testcase_23 AC 249 ms
10,052 KB
testcase_24 AC 257 ms
10,152 KB
testcase_25 AC 268 ms
10,152 KB
testcase_26 AC 156 ms
10,064 KB
testcase_27 AC 161 ms
10,056 KB
testcase_28 AC 154 ms
10,168 KB
testcase_29 AC 167 ms
10,096 KB
testcase_30 AC 120 ms
10,172 KB
testcase_31 AC 81 ms
10,112 KB
testcase_32 AC 135 ms
10,056 KB
testcase_33 AC 2 ms
5,940 KB
testcase_34 AC 230 ms
10,220 KB
testcase_35 AC 223 ms
10,048 KB
testcase_36 AC 228 ms
10,100 KB
testcase_37 AC 230 ms
10,180 KB
testcase_38 AC 225 ms
10,208 KB
testcase_39 AC 226 ms
10,064 KB
testcase_40 AC 225 ms
10,056 KB
testcase_41 AC 228 ms
10,336 KB
testcase_42 AC 229 ms
10,048 KB
testcase_43 AC 231 ms
10,172 KB
testcase_44 AC 233 ms
10,200 KB
testcase_45 AC 231 ms
10,100 KB
testcase_46 AC 236 ms
10,168 KB
testcase_47 AC 231 ms
10,168 KB
testcase_48 AC 232 ms
10,180 KB
testcase_49 AC 235 ms
10,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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 upx[2 * MAX_N], upy[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;
        assert(std::min({a, b, c, d}) >= 0 && std::max({a, b, c, d}) < 2 * N);
        assert((a < c) && (b < d) && ((e >= 1 && e <= N)));
        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];
        upx[a] = {b, d, e}, upx[c] = {b, d, -e}, upy[b] = {a, c, e}, upy[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;
        assert(std::min(p, q) >= 0 && std::max(p, q) < 2 * N);
        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){
            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;
    assert(N >= 1 && N <= 50000);
    for(int i = 1; i <= N; ++i){
        std::cin >> h[i];
        assert(h[i] >= 0 && h[i] < (1LL << 60));
    }
    transform_rectangle();
    std::cin >> Q;
    assert(Q >= 1 && Q <= 50000);
    std::vector<int> index;
    transform_query(index);
    const int width = 2 * 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){
            memset(C, 0, sizeof(C)), cur_hash = 0, prv = cur, curx = cur * width - 1, cury = -1;
        }
        // left
        while(curx > query[id].first){
            if(upx[curx].lower <= cury && cury < upx[curx].upper){
                const int c = upx[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(upx[curx].lower <= cury && cury < upx[curx].upper){
                const int c = upx[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(upy[cury].lower <= curx && curx < upy[cury].upper){
                const int c = upy[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