답안 #1015659

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1015659 2024-07-06T16:11:00 Z vjudge1 Meteors (POI11_met) C++17
24 / 100
83 ms 63956 KB
#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define endl '\n'
#define FF first
#define SS second
#define all(a) a.begin(), a.end()
#define mod (ll)(1000000007)

int n, m, q;
int sum;

struct Kind {
    Kind *L, *R;
    int Cur = 0;
};

Kind* my_new(){
    static Kind pool[1050000];
    static int hed = 0;
    return pool + hed++;
}

Kind *update(Kind *id, int u, int v, int c, int l, int r) {
    if (!id) {
        id = my_new();
    }
    if (l > v || r < u) {
        return id;
    }

    if (u <= l && r <= v) {
        Kind *temp = my_new();
        temp->L = id->L;
        temp->R = id->R;
        temp->Cur = min(id->Cur + c, (int)1e9);
        return temp;
    }

    int md = (l + r) / 2;
    Kind *temp = my_new();
    temp->L = update(id->L, u, v, c, l, md + 0);
    temp->R = update(id->R, u, v, c, md + 1, r);
    temp->Cur = id->Cur;
    return temp;
}

void get(Kind *id, int u, int v, int l, int r) {
    if (!id) {
        id = my_new();
    }
    if (l > v || r < u) {
        return;
    }


    sum = min(sum + id->Cur, (int)1e9);
    if (l >= u && r <= v) {
        return;
    }

    int md = (l + r) / 2;
    get(id->L, u, v, l, md + 0),
    get(id->R, u, v, md + 1, r);
}

int main() {
    ios_base::sync_with_stdio(0);cin.tie(0);

    cin >> n >> m;

    vector<vector<int>> Ind(n + 1);
    for (int i = 1; i <= m; i++) {
        int a;
        cin >> a;
        Ind[a].push_back(i);
    }

    vector<int> A(n + 1);
    for (int i = 1; i <= n; i++) {
        cin >> A[i];
    }
    vector<Kind*> Head;
    cin >> q;
    int qq = q;
    while (qq--) {
        int l, r, x;
        cin >> l >> r >> x;
        if (l <= r) {
            Head.push_back(update((Head.empty() ? my_new() : Head.back()), l, r, x, 1, m));
        }
        else {
            auto temp = update((Head.empty() ? my_new() : Head.back()), l, m, x, 1, m);
            Head.push_back(update(temp, 1, r, x, 1, m));
        }
    }

    for (int i = 1; i <= n; i++) {
        int l = 0, r = Head.size() - 1, res  = -1;
        while (l <= r) {
            int md = (l + r) / 2;

            auto cur = Head[md];
            sum = 0;
            for (auto pos : Ind[i]) {
                get(cur, pos, pos, 1, m);
            }

            if (sum >= A[i]) {
                res = md, r = md - 1;
            }
            else {
                l = md + 1;
            }
        }
        if (res == -1) {
            cout << "NIE" << endl;
        }
        else {
            cout << res + 1 << endl;
        }
    }

}
# 결과 실행 시간 메모리 Grader output
1 Correct 9 ms 24924 KB Output is correct
2 Correct 9 ms 24924 KB Output is correct
3 Correct 8 ms 24940 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 9 ms 24924 KB Output is correct
2 Correct 8 ms 24948 KB Output is correct
3 Correct 8 ms 25176 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Runtime error 45 ms 51928 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 41 ms 52576 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 42 ms 52620 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 40 ms 51664 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 82 ms 63956 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 83 ms 62816 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -