이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#pragma GCC optimize("Ofast,unroll-loops")
#pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt")
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define ff first
#define ss second
int n, q, jump[100005][20], h2o[100005][20];
signed main(){
ios_base::sync_with_stdio(false); cin.tie(nullptr);
cin >> n >> q;
priority_queue<pair<int, int>, vector<pair<int, int> >, greater<pair<int, int> > > pq;
for(int i = 1; i <= n; i++){
int d; cin >> d >> h2o[i][0];
while(!pq.empty() && pq.top().ff < d){
jump[pq.top().ss][0] = i;
pq.pop();
}
pq.push({d, i});
}
while(!pq.empty()){
jump[pq.top().ss][0] = 0;
pq.pop();
}
jump[0][0] = 0; h2o[0][0] = 0;
for(int j = 1; j < 20; j++)
for(int i = 0; i <= n; i++){
jump[i][j] = jump[jump[i][j - 1]][j - 1];
h2o[i][j] = h2o[i][j - 1] + h2o[jump[i][j - 1]][j - 1];
}
while(q--){
int r, v; cin >> r >> v;
for(int i = 19; i >= 0; i--){
if(h2o[r][i] >= v) continue;
v -= h2o[r][i];
r = jump[r][i];
}
cout << r << '\n';
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |