이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define pb push_back
#define eb emplace_back
#define in insert
#define ld long double
#define ll long long
#define pii pair<ll,ll>
#define vl vector<ll>
#define mpr make_pair
#define F first
#define S second
#define lg(a) __lg(a)
#define all(v) v.begin(),v.end()
//#define endl "\n"
#define inf 0x3F3F3F3F
using namespace std;
const int mod = 1e9+7;
const int sz = 1e5+5;
const ll oo = 1000000000000000005;
ll st[20][sz], water[20][sz];
void solve(){
ll n,q,i,j,len;
cin>>n>>q;
deque<pair<ll,ll>> dq;
for(i=1;i<=n;i++){
cin>>len>>water[0][i];
while(!dq.empty() && len > dq.front().first){
st[0][dq.front().second]=i;
dq.pop_front();
}
dq.push_front({len,i});
}
for(i=1;i<20;i++){
for(j=1;j<=n;j++){
st[i][j] = st[i-1][st[i-1][j]];
water[i][j] = water[i-1][j] + water[i-1][st[i-1][j]];
}
}
while(q--){
ll ix, g;
cin>>ix>>g;
for(i=19;i>=0;i--){
if(water[i][ix] < g){
g-=water[i][ix];
ix = st[i][ix];
}
}
cout << ix << endl;
}
}
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
ll t=1;
//cin>>t;
while(t--){
solve();
}
}
/*
2 1
1 2 5
4
2
1 2
*/
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |
| # | Verdict | Execution time | Memory | Grader output |
|---|
| Fetching results... |