# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
898588 | 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];
vector<long long>clr,cur;
long long binary(long long now){
long long l=0,r=cur.size()-1,mid,kr=cur.size()-1;
if(cur.empty())return -1;
while(l<r){
mid=(l+r)/2;
if(cur[kr]-cur[mid]>=now)l=mid+1;
else r=mid;
}
if(cur[kr]<now)return -1;
if(cur[kr]-cur[l]<now)l--;
if(l==-1)return -2;
return l;
}
long long binary2(long long L,long long N){
long long l=0,r=cur.size(),mid,kr=cur.size()-1;
if(cur.empty())return -1;
cur.push_back(1000000007);
while(l<r){
mid=(l+r)/2;
//cout<<cur[kr]<<"()"<<cur[mid]<<endl;
if(cur[kr]-cur[mid]+N<L+cur[mid])r=mid-1;
else l=mid;
}
cur.pop_back();
if(l==cur.size())l=-1;
return l;
}
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 br=1,L=red[0];
//cur.push_back(1);cur.push_back(3);cur.push_back(3);cur.push_back(3);cur.push_back(4);cur.push_back(4);
//cout<<binary(0)<<endl;
for(int i=1;i<n;i++){
//cout<<"L: "<<L<<endl;
long long N=red[i];
if(N>=L){
br++;
long long kude=binary2(L,N);
//cout<<kude<<endl;
if(kude>-1)L=N+cur[cur.size()-1]-cur[kude];
else L=N+cur[cur.size()-1];
cur=clr;
}else{
long long kude=binary(L-N);
//cout<<kude<<endl;
if(kude==-1){
if(cur.empty()==true)cur.push_back(N);
else cur.push_back(cur[cur.size()-1]+N);
}else{
br++;
if(kude>=0)L=N+cur[cur.size()-1]-cur[kude];
else L=N+cur[cur.size()-1];
while(cur.empty()==false)cur.pop_back();
}
}
}
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... |