#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define vt vector
#define pb push_back
const int mxn = 2e5 + 3;
int n, q;
ll a[100001], b[100001];
int main(){
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
cin >> n >> q;
for(int i = 1; i <= n; i++)cin >> a[i] >> b[i];
if(n <= 1000 && q <= 2000){
for(int i = 0; i < q; i++){
ll r, v; cin >> r >> v;
if(v <= b[r]){
cout << r << "\n";
}else{
ll curr = a[r];
v -= b[r];
for(int j = r + 1; j <= n; j++){
if(a[j] > curr){
v -= b[j];
if(v <= 0){
cout << j << "\n";
break;
}
curr = a[j];
}
}
if(v > 0)cout << 0 << "\n";
}
}
}else{
ll p[n + 1] = {};
for(int i = 1; i <= n; i++)p[i] = p[i - 1] + b[i];
for(int i = 0; i < q; i++){
ll rr, v; cin >> rr >> v;
int l = rr, r = n, ans = 0;
while(l <= r){
int mid = (l + r) >> 1;
if(p[mid] - p[rr - 1] > v){
ans = l; r = mid - 1;
}else{
l = mid + 1;
}
}
cout << ans << "\n";
}
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
212 KB |
Output is correct |
2 |
Correct |
1 ms |
340 KB |
Output is correct |
3 |
Correct |
1 ms |
340 KB |
Output is correct |
4 |
Correct |
1 ms |
340 KB |
Output is correct |
5 |
Correct |
2 ms |
340 KB |
Output is correct |
6 |
Correct |
3 ms |
340 KB |
Output is correct |
7 |
Correct |
1 ms |
340 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
82 ms |
3228 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
212 KB |
Output is correct |
2 |
Correct |
1 ms |
340 KB |
Output is correct |
3 |
Correct |
1 ms |
340 KB |
Output is correct |
4 |
Correct |
1 ms |
340 KB |
Output is correct |
5 |
Correct |
2 ms |
340 KB |
Output is correct |
6 |
Correct |
3 ms |
340 KB |
Output is correct |
7 |
Correct |
1 ms |
340 KB |
Output is correct |
8 |
Incorrect |
82 ms |
3228 KB |
Output isn't correct |
9 |
Halted |
0 ms |
0 KB |
- |