# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
274718 | 2020-08-19T14:42:54 Z | arnold518 | Teams (CEOI11_tea) | C++14 | 472 ms | 202452 KB |
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int, int> pii; typedef pair<ll, ll> pll; const int MAXN = 1e6; const int INF = 987654321; struct dequeue { int st=0; vector<int> V; bool empty() { return st==V.size(); } void push_back(int x) { V.push_back(x); } void push_front(int x) { V[--st]=x; } void pop_back() { V.pop_back(); } void pop_front() { st++; } int front() { return V[st]; } int back() { return V.back(); } }; int N; pii B[MAXN+10]; int dp1[MAXN+10], dp2[MAXN+10]; int pmax[MAXN+10]; dequeue DQ[MAXN+10]; int memo[MAXN+10]; vector<int> V[MAXN+10]; int main() { scanf("%d", &N); for(int i=1; i<=N; i++) scanf("%d", &B[i].first), B[i].second=i; //for(int i=1; i<=N; i++) A[i]=rand()%(N/2)+1; sort(B+1, B+N+1); for(int i=1; i<=N; i++) { dp1[i]=-INF; if(i-B[i].first>=0) { dp1[i]=pmax[i-B[i].first]+1; V[i-B[i].first].push_back(i); } pmax[i]=max(pmax[i-1], dp1[i]); } for(int i=0; i<=N; i++) { while(!DQ[dp1[i]].empty() && dp2[DQ[dp1[i]].back()]>=dp2[i]) DQ[dp1[i]].pop_back(); DQ[dp1[i]].push_back(i); for(auto it : V[i]) { int p=dp1[it]-1; int val=-1; while(!DQ[p].empty() && dp2[DQ[p].front()]<=it-DQ[p].front()) { val=DQ[p].front(); DQ[p].pop_front(); } if(val!=-1 && (DQ[p].empty() || max(it-val, dp2[val])<dp2[DQ[p].front()])) DQ[p].push_front(val); dp2[it]=max(it-DQ[p].front(), dp2[DQ[p].front()]); memo[it]=DQ[p].front(); } } printf("%d\n", dp1[N]); int now=N; while(now) { printf("%d ", now-memo[now]); for(int i=now; i>memo[now]; i--) printf("%d ", B[i].second); printf("\n"); now=memo[now]; } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 37 ms | 55168 KB | Output is correct |
2 | Runtime error | 108 ms | 111708 KB | Execution killed with signal 11 |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 116 ms | 111608 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 107 ms | 111480 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 121 ms | 111864 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 104 ms | 111992 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 148 ms | 118392 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 131 ms | 120044 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 356 ms | 183780 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 472 ms | 202452 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 443 ms | 176684 KB | Execution killed with signal 11 |
2 | Halted | 0 ms | 0 KB | - |