답안 #109501

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
109501 2019-05-06T18:15:32 Z naoai Nuclearia (CEOI15_nuclearia) C++14
11 / 100
1000 ms 139336 KB
#include <bits/stdc++.h>

using namespace std;

typedef long long i64;
const int nmax = 25e5;

vector<vector<i64>> s;

struct aintnod {
    i64 s, r;
} aint[4 * nmax + 1];

void update (int nod, int x, int y, int st, int dr, int a, int b) {
    if (st <= x && y <= dr) {
        aint[nod].s += a;
        aint[nod].r += b;
        return ;
    }

    int mij = (x + y) / 2;
    if (st <= mij)
        update(2 * nod, x, mij, st, dr, a, b);
    if (mij < dr)
        update(2 * nod + 1, mij + 1, y, st, dr, a, b);
}

void build (int nod, int x, int y) {
    if (x == y) {
        s[x][1] = aint[nod].s;
        return ;
    }

    int mij = (x + y) / 2;

    update(2 * nod, x, mij, x, mij, aint[nod].s, aint[nod].r);
    update(2 * nod + 1, mij + 1, y, mij + 1, y, aint[nod].s + aint[nod].r * (mij + 1 - x), aint[nod].r);

    build(2 * nod, x, mij);
    build(2 * nod + 1, mij + 1, y);
}

int main () {
    int w, h, n;
    cin >> w >> h >> n;

    s.resize(w + 1);
    for (int i = 0; i <= w; ++ i)
        s[i].resize(h + 1, 0);

    if (1LL * n * w * h <= 1e8) {
        for (int i = 1; i <= n; ++ i) {
            int x, y, a, b;
            cin >> x >> y >> a >> b;

            for (int j = 1; j <= w; ++ j)
                for (int k = 1; k <= h; ++ k) {
                    int c = max(0LL, a - 1LL * b * max(abs(x - j), abs(y - k)));
                    s[j][k] += c;
                }
        }

        for (int i = 1; i <= w; ++ i)
            for (int j = 1; j <= h; ++ j)
                s[i][j] += s[i - 1][j] + s[i][j - 1] - s[i - 1][j - 1];

    } else if (h == 1) {
        for (int i = 1; i <= n; ++ i) {
            int x, y, a, b;
            cin >> x >> y >> a >> b;

            int pfin = min(w, x + a / b);
            update(1, 1, w, x, pfin, a, -b);

            pfin = max(1, x - a / b);
            if (pfin <= x - 1)
                update(1, 1, n, pfin, x - 1, a % b, b);
        }

        build(1, 1, w);
        for (int i = 1; i <= w; ++ i)
            s[i][1] += s[i - 1][1];
    } else {
        cout << "-1\n";
    }

    int q;
    cin >> q;
    for (int i = 1; i <= q; ++ i) {
        int a, b, x, y;
        cin >> a >> b >> x >> y;

        i64 total = s[x][y] - s[a - 1][y] - s[x][b - 1] + s[a - 1][b - 1];
        i64 arie = (x - a + 1) * (y - b + 1);
        i64 r = total / arie;
        if (total % arie >= (arie + 1) / 2) ++ r;

        cout << r << "\n";
    }
    return 0;
}
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1025 ms 137464 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1070 ms 137420 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 248 ms 20232 KB Output is correct
2 Correct 482 ms 2852 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 277 ms 20992 KB Output is correct
2 Correct 514 ms 2808 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1072 ms 139336 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1062 ms 55556 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 946 ms 22348 KB Output is correct
2 Correct 492 ms 2936 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1055 ms 29548 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1081 ms 137364 KB Time limit exceeded
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1075 ms 137324 KB Time limit exceeded
# 결과 실행 시간 메모리 Grader output
1 Runtime error 48 ms 40088 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 48 ms 39872 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 48 ms 40824 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 45 ms 40056 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -