# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
100699 | Bodo171 | 커다란 상품 (IOI17_prize) | C++14 | 14 ms | 5916 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "prize.h"
#include <fstream>
#include <vector>
#include <iostream>
using namespace std;
const int nmax=200005;
const int prdf=600;//modifici dupa asta
int lg[nmax];
int spec[nmax];
int mx,nr,i;
vector<int> v[nmax];
int cate_st(int poz)
{
if(v[poz].empty()) v[poz]=ask(poz);
return v[poz][0];
}
int cate(int poz)
{
if(v[poz].empty()) v[poz]=ask(poz);
return v[poz][0]+v[poz][1];
}
void solve(int st,int dr)
{
int len=spec[dr]-spec[st];
int poz=spec[st];
for(int p=lg[len];p>=0;p--)
if(poz+(1<<p)<spec[dr])
{
if(cate_st(poz+(1<<p))==st)
{
poz+=(1<<p);
}
}
poz++;spec[st+1]=poz;
}
int find_best(int n) {
for(i=2;i<=n;i++)
lg[i]=lg[i/2]+1;
for(i=0;i<prdf;i++)
{
v[i]=ask(i);
if(v[i][0]+v[i][1]>mx)
mx=v[i][0]+v[i][1];
}
spec[0]=-1;
for(i=0;i<prdf;i++)
{
if(v[i][0]+v[i][1]!=mx)
spec[++nr]=i;
}
spec[mx+1]=n+1;
for(int i=nr;i<mx;i++)
solve(i,mx+1);
for(i=1;i<=mx;i++)
if(cate(spec[i])==0)
return spec[i];
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |