# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1043741 | 2024-08-04T15:42:27 Z | Nickpapadak | Fountain (eJOI20_fountain) | C++14 | 43 ms | 2140 KB |
#include<bits/stdc++.h> using namespace std; #define X first #define Y second const unsigned int MAXN = 1e+5 +10; const unsigned int INF = 1+9 + 10; pair<int, int> T[MAXN];// (diam, capacity) int sf[MAXN]; int N, Q; int solvesort(int i, int val){ // int ans = i; T[0] = {0,0}; int s = sf[i-1]; int l = i, r = N; int mid = (l+r)>>1; // printf("%d - %d < %d\n", sf[N], s, val); if(sf[N] - s < val) return 0; while(l<r){ if(sf[mid] - s >=val && sf[mid-1] - s < val) return mid; if(sf[mid]- s > val){ r = mid-1; mid = (l+r)>>1; }else{ l=mid+1; mid = (l+r)>>1; } } return l; } // int ans[MAXN]; int nb[MAXN]; int findlast(int i, int q){ if(i == N+1) return 0; if(q <= T[i].Y) return i; return findlast(nb[i], q-T[i].Y); } void solveqn(){ // int sol = 0; stack<int> stk; T[N+1] ={INF, 0}; for(int i =1;i<=N+1;++i){ if(!(stk.empty())&&T[stk.top()].X > T[i].X){ stk.push(i); }else{ while(!(stk.empty()) && T[i].X >= T[stk.top()].X){ nb[stk.top()] =i; stk.pop(); }stk.push(i); } } T[0] = {0,INF}; // ans[N+1] = 0; // for(int i = N; i >= 1; --i){ // ans[i] = ans[nb[i]] + T[i].Y; // } while(Q--){ int a, b; scanf("%d%d", &a,&b); // b-=T[a].Y; // while(b > 0){ // T[nb[a]].Y // a = nb[a]; // b -= T[a].Y; // // printf("%d ", b); // } printf("%d\n", findlast(a,b)); } // return max(0, sol); } int main(){ scanf("%d%d",&N,&Q); for(int i = 1;i <=N; ++i){ scanf("%d%d",&T[i].X, &T[i].Y); } if(is_sorted(T+1,T+N+1)){ for(int i = 1;i <=N; ++i){ sf[i] = sf[i-1] + T[i].Y; } while(Q--){ int a, b; scanf("%d%d",&a,&b); printf("%d\n", solvesort(a,b)); } }else{ solveqn(); } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 348 KB | Output is correct |
2 | Incorrect | 0 ms | 344 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 39 ms | 2140 KB | Output is correct |
2 | Correct | 43 ms | 2128 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 348 KB | Output is correct |
2 | Incorrect | 0 ms | 344 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |