# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
441653 | linkret | Global Warming (CEOI18_glo) | C++14 | 337 ms | 31680 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std; int h [300000]; int fen [500002]; vector <int> pom; map <int, int> comp;
int dp1 [300000]; int dp2 [300000]; const int MAXN = 500000+1;
//fenwick
int query (int x){
int sol=0;
for (x; x>0; x-= (x & -x)) sol=max (sol, fen[x]);
return sol;
}
void add (int x, int val){
for (x; x<500002; x+= (x & -x)) fen [x]=max (fen[x], val);
}
int main(){
//input
int n, x;
cin >> n >> x;
for (int i=0; i<n; i++) cin >> h[i];
//compression
for (int i=0; i<n; i++) pom.push_back(h[i]);
for (int i=0; i<n; i++) pom.push_back(h[i]+x);
sort (pom.begin(), pom.end());
for (int i=0; i<pom.size(); i++) comp [pom[i]]=i+1;
//precompute right dynamic
for (int i=n-1; i>=0; i--){
int hi=comp[h[i]];
int height=MAXN-hi;
dp2 [i]=query (height)+1;
add (height+1, dp2[i]);
}
//for (int i=0; i<n; i++) cout << dp2[i] << " ";
memset (fen, 0, sizeof (fen));
//computing result
int sol=0;
for (int i=0; i<n; i++){
int hi=comp[h[i]+x];
int res=query (hi)+dp2[i];
dp1 [i]=query (h[i])+1;
add (h[i], dp1[i]);
sol=max (sol, res);
}
cout << sol << endl;
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |