답안 #1011906

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1011906 2024-07-01T10:53:19 Z atom Meteors (POI11_met) C++17
74 / 100
675 ms 37352 KB
#include "bits/stdc++.h"
// @JASPER'S BOILERPLATE
using namespace std;
using ll = long long;
 
#ifdef JASPER
#include "debug.h"
#else
#define debug(...) 166
#endif
 
const int N = 3e5 + 5;
 
struct FenwickTree {
    int n;
    vector <ll> f;
    void init(int _n) {
        n = _n;
        f.resize(n + 5, 0);  
    } 
 
    void modify(int x, int val) {
        for (; x <= n; x += x & -x) 
            f[x] += val;
    }
    void upd(int l, int r, int val) {
        if (l <= r) {
            modify(l, val);
            modify(r + 1, -val); 
        }
        else {
            upd(1, r, val);
            upd(l, n + 1, val);
        }
 
    }
    ll qry(int x) {
        ll sum = 0;
        for (; x; x -= x & -x)
            sum += f[x];
        return sum;
    }
} bit;
 
vector <int> adj[N];
vector <int> qs[N];
int ans[N];
ll tar[N];
 
 
void dnc(int l, int r, vector <int>& cand) {
    if (l == r) {
        debug(l, r, cand);
        for (int x : cand) ans[x] = l;
        return;
    }
 
    int m = (l + r) / 2;
 
    vector <int> L, R;
    for (int i = l; i <= m; ++i) {
        auto x = qs[i];
        bit.upd(x[0], x[1], x[2]);
    }
 
    vector <int> done, undone;
    for (auto x : cand) {
        ll sum = 0;
        for (int y : adj[x]) sum += bit.qry(y);
        if (sum >= tar[x]) {
            done.push_back(x);
        }
        else {
            tar[x] -= sum;
            undone.push_back(x);
        }
    }
 
    // reroll change as we no longer able to process
    for (int i = l; i <= m; ++i) {
        auto x = qs[i];
        bit.upd(x[0], x[1], -x[2]);
    }
 
    dnc(l, m, done);
    dnc(m + 1, r, undone);
}
 
int n, m;
int q;
 
signed main() {
    cin.tie(0) -> sync_with_stdio(0);
    
    #ifdef JASPER
        freopen("in1", "r", stdin);
    #endif
 
    cin >> n >> m;
    for (int i = 1; i <= m; ++i) {
        int x; cin >> x;
        adj[x].push_back(i);
    }
    for (int i = 1; i <= n; ++i) 
        cin >> tar[i];
    
    cin >> q;
    for (int i = 1; i <= q; ++i) {
        int l, r, c;
        cin >> l >> r >> c;
        qs[i] = {l, r, c};
    }
    qs[q + 1] = {0, 0, 0};
 
    vector <int> cand(n);
    iota(cand.begin(), cand.end(), 1);
 
    bit.init(m);
    
    dnc(1, q + 1, cand);
    for (int i = 1; i <= n; ++i) {
        if (ans[i] == q + 1) cout << "NIE\n";
        else cout << ans[i] << "\n";
    }
    
    return 0;
}

Compilation message

met.cpp: In function 'void dnc(int, int, std::vector<int>&)':
met.cpp:9:20: warning: statement has no effect [-Wunused-value]
    9 | #define debug(...) 166
      |                    ^~~
met.cpp:53:9: note: in expansion of macro 'debug'
   53 |         debug(l, r, cand);
      |         ^~~~~
# 결과 실행 시간 메모리 Grader output
1 Correct 6 ms 15708 KB Output is correct
2 Correct 7 ms 15916 KB Output is correct
3 Correct 5 ms 15708 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 5 ms 15708 KB Output is correct
2 Correct 6 ms 15708 KB Output is correct
3 Correct 5 ms 15708 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 54 ms 18512 KB Output is correct
2 Correct 83 ms 20244 KB Output is correct
3 Correct 68 ms 18644 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 69 ms 18460 KB Output is correct
2 Correct 68 ms 18468 KB Output is correct
3 Correct 79 ms 19536 KB Output is correct
4 Correct 16 ms 17500 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 56 ms 18296 KB Output is correct
2 Correct 66 ms 19900 KB Output is correct
3 Correct 46 ms 17444 KB Output is correct
4 Correct 69 ms 18712 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 72 ms 18012 KB Output is correct
2 Correct 77 ms 18344 KB Output is correct
3 Correct 55 ms 18156 KB Output is correct
4 Correct 79 ms 19420 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 675 ms 37352 KB Output is correct
2 Incorrect 522 ms 28544 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 648 ms 35156 KB Output is correct
2 Incorrect 573 ms 28976 KB Output isn't correct
3 Halted 0 ms 0 KB -