# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
603236 | 2022-07-23T17:55:10 Z | peuch | Event Hopping (BOI22_events) | C++17 | 1500 ms | 13264 KB |
#include<bits/stdc++.h> using namespace std; const int MAXN = 1e5 + 10; const int MAXK = 22; int n, q; struct interval{ int l, r, id; interval (int _l = 0, int _r = 0){ l = _l; r = _r; id = 0; } void scan(int _id){ scanf("%d %d", &l, &r); id = _id; } bool operator < (interval x){ if(r == x.r) return l < x.l; return r < x.r; } }v[MAXN], ori[MAXN]; int dp[MAXN][MAXK]; int getDP(int i, int j){ if(dp[i][j] != 0) return dp[i][j]; return getDP(getDP(i, j - 1), j - 1); } int main(){ scanf("%d %d", &n, &q); for(int i = 1; i <= n; i++){ v[i].scan(i); ori[i] = v[i]; } sort(v + 1, v + 1 + n); vector<interval > pilha; for(int i = 1; i <= n; i++){ while(!pilha.empty() && pilha.back().l >= v[i].l) pilha.pop_back(); pilha.push_back(v[i]); int k = lower_bound(pilha.begin(), pilha.end(), interval(-1, v[i].l)) - pilha.begin(); dp[v[i].id][0] = pilha[k].id; } for(int i = 1; i <= q; i++){ int a, b; scanf("%d %d", &a, &b); if(a == b){ printf("0\n"); continue; } if(ori[b].r < ori[a].r){ printf("impossible\n"); continue; } if(ori[a].r >= ori[b].l && ori[a].r >= ori[b].r){ printf("1\n"); continue; } int ans = 0; for(int k = MAXK - 1; k >= 0; k--){ int viz = getDP(b, k); if(ori[viz].l <= ori[a].r) continue; b = viz; ans += (1 << k); } if(getDP(b, 0) == b){ printf("impossible\n"); continue; } ans += 2; printf("%d\n", ans); } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 88 ms | 2644 KB | Output is correct |
2 | Execution timed out | 1530 ms | 13204 KB | Time limit exceeded |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 27 ms | 2644 KB | Output is correct |
2 | Correct | 86 ms | 2644 KB | Output is correct |
3 | Execution timed out | 1575 ms | 2668 KB | Time limit exceeded |
4 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 27 ms | 2644 KB | Output is correct |
2 | Correct | 86 ms | 2644 KB | Output is correct |
3 | Execution timed out | 1575 ms | 2668 KB | Time limit exceeded |
4 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 27 ms | 2644 KB | Output is correct |
2 | Correct | 86 ms | 2644 KB | Output is correct |
3 | Execution timed out | 1575 ms | 2668 KB | Time limit exceeded |
4 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 1542 ms | 13264 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 88 ms | 2644 KB | Output is correct |
2 | Execution timed out | 1530 ms | 13204 KB | Time limit exceeded |
3 | Halted | 0 ms | 0 KB | - |