답안 #797120

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
797120 2023-07-29T06:58:51 Z vjudge1 푸드 코트 (JOI21_foodcourt) C++17
0 / 100
471 ms 524288 KB
#ifdef Home
#define _GLIBCXX_DEBUG
#endif // Home

#include <bits/stdc++.h>

using namespace std;

typedef long long ll;
typedef long double ld;

struct SlideWindow{
    deque < pair < ll, int > > L, R, S;
    deque < int > cnt;
};

void del(SlideWindow &x, int K) {
    if(x.L.empty() || x.L.back().first < K) {
        if(!x.L.empty()) {
            K -= x.L.back().first;
        }
        for(; !x.L.empty(); x.L.pop_back(), x.cnt.pop_back());
        for(; !x.R.empty();) {
            x.cnt.push_back(x.S.back().first);
            x.L.push_back({(x.L.empty() ? 0 : x.L.back().first) + x.cnt.back(), x.S.back().second});
            x.S.pop_back();
            x.R.pop_back();
        }
    }
    for(; K && !x.L.empty();) {
        if(K < x.cnt.back()) {
            x.L.back().first -= K;
            x.cnt.back() -= K;
            K = 0;
        } else {
            K -= x.cnt.back();
            x.cnt.pop_back();
            x.L.pop_back();
        }
    }
}

void add(SlideWindow &x, ll K, int C) {
    if(!C) {
        del(x, K);
        return;
    }
    x.R.push_back({K + (x.R.empty() ? 0 : x.R.back().first), C});
    x.S.push_back({K, C});
}

int get(SlideWindow &x, ll K) {
    if((x.L.empty() ? 0 : x.L.back().first) + (x.R.empty() ? 0 : x.R.back().first) < K) {
        return 0;
    }
    if(x.L.empty() || x.L.back().first < K) {
        if(!x.L.empty()) {
            K -= x.L.back().first;
        }
        int l = -1, r = x.R.size() - 1, m;
        for(; l + 1 < r;) {
            m = (l + r) / 2;
            (x.R[m].first < K ? l : r) = m;
        }
        return x.R.empty() ? 0 : x.R[r].second;
    } 
    int l = 0, r = x.L.size(), m;
    for(; l + 1 < r;) {
        m = (l + r) / 2;
        (x.L[m].first < K ? r : l) = m;
    }
    return x.L.empty() ? 0 : x.L[l].second;
}

struct node{
    queue < pair < ll, int > > q;
};

const int N = 1<<18;

vector < SlideWindow > Shops;
vector < node > tree;

void relax(int x, int i) {
    for(; !tree[x].q.empty(); tree[x].q.pop()) {
        add(Shops[i], tree[x].q.front().first, tree[x].q.front().second);
    }
}

void push(int x) {
    int l = x * 2 + 1, r = x * 2 + 2;
    for(; !tree[x].q.empty(); tree[x].q.pop()) {
        tree[l].q.push(tree[x].q.front());
        tree[r].q.push(tree[x].q.front());
    }
}

void add_to_que(int &l, int &r, pair < int, int > &tmp, int x, int lx, int rx) {
    if(r <= lx || rx <= l) {
        return;
    }
    if(l <= lx && rx <= r) {
        tree[x].q.push(tmp);
        return;
    }
    push(x);
    int m = (lx + rx) / 2;
    add_to_que(l, r, tmp, x * 2 + 1, lx, m);
    add_to_que(l, r, tmp, x * 2 + 2, m, rx);
}

int get(int &pos, ll &K, int x, int lx, int rx) {
    if(lx + 1 == rx) {
        relax(x, lx);
        return get(Shops[lx], K);
    }
    push(x);
    int m = (lx + rx) / 2;
    return pos < m ? 
    get(pos, K, x * 2 + 1, lx, m) :
    get(pos, K, x * 2 + 2, m, rx) ;
}

main() {
#ifdef Home
    freopen("input.txt", "r", stdin);
    freopen("output.txt", "w", stdout);
#endif // Home
    ios_base::sync_with_stdio(0);
    cin.tie(0);

    int n, m, q, k = 1;
    pair < int, int > tmp;
    ll T;
    for(cin >> n >> m >> q; k <= n; k <<= 1);
    tree.resize(k << 1);
    Shops.resize(m + 1);
    for(int t, L, R, C, K; q --> 0;) {
        cin >> t;
        if(t == 1) {
            cin >> L >> R >> C >> K;
            tmp = {K, C};
            ++ R;
            add_to_que(L, R, tmp, 0, 0, k);
        } else if(t == 2) {
            cin >> L >> R >> K;
            ++ R;
            tmp = {K, 0};
            add_to_que(L, R, tmp, 0, 0, k);
        } else {
            cin >> C >> T;
            cout << get(C, T, 0, 0, k) << '\n';
        }
    }
}

Compilation message

foodcourt.cpp:124:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
  124 | main() {
      | ^~~~
# 결과 실행 시간 메모리 Grader output
1 Runtime error 205 ms 524288 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 205 ms 524288 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 186 ms 524288 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 471 ms 524288 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 205 ms 524288 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 187 ms 524288 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 205 ms 524288 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 205 ms 524288 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -