# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
135879 | alexandra_udristoiu | 커다란 상품 (IOI17_prize) | C++14 | 90 ms | 528 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<iostream>
#include<vector>
#include<cmath>
#include "prize.h"
using namespace std;
static int lst[200005];
int find_best(int n){
int nr, p, st, dr, mid, r, i, x;
vector<int> a;
r = sqrt(n * 1.0);
x = 0;
for(i = 0; i <= r; i++){
a = ask(i);
lst[ a[1] ] = max(lst[ a[1] ], i);
if(a[0] == 0 && a[1] == 0){
return i;
}
if(x <= a[1] + a[0]){
x = a[1] + a[0];
p = i;
nr = a[1];
}
}
while(nr > 0){
st = max(p, lst[nr]) + 1;
dr = n;
while(st <= dr){
mid = (st + dr) / 2;
a = ask(mid);
lst[ a[1] ] = max( lst[ a[1] ], mid);
if(a[1] == nr){
st = mid + 1;
}
else{
dr = mid - 1;
}
}
a = ask(st);
if(a[1] == 0){
return st;
}
p = st;
nr--;
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |