# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
898581 | White | Bigger segments (IZhO19_segments) | C++14 | 1 ms | 348 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#pragma GCC optimize <"O3">
#include <bits/stdc++.h>
#define endl "\n"
using namespace std;
long long red[500005];
int main(){
//ios_base::sync_with_stdio(false);
//cin.tie(NULL);
long long n;
cin>>n;
for(int i=0;i<n;i++)cin>>red[i];
long long L=red[0],br=1,N;
multiset<long long>cur,clr;
for(int i=1;i<n;i++){
long long N=red[i];
//cout<<"L: "<<L<<"_"<<N<<endl;
if(N>=L){
br++;
auto irr=cur.end();
--irr;
long long big=*irr;
auto ir=cur.lower_bound(big-(N-L));
long long ss;
if(ir==cur.begin())ss=0;
else{
--ir;
ss=*ir;
}
//cout<<ss<<endl;
L=N+big-ss;
//L=N;
cur=clr;
}else{
if(cur.empty()){
cur.insert(N);
}else{
auto irr=cur.end();
--irr;
long long big=*irr;
if(big+N<L){
cur.insert(big+N);
}else{
auto ir=cur.lower_bound(big-(L-N));
long long ss;
if(ir==cur.begin())ss=0;
else{
--ir;
ss=*ir;
}
//cout<<ss<<endl;
L=N+big-ss;
br++;
cur=clr;
}
}
}
}
cout<<br<<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... |