# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
425271 | NachoLibre | 커다란 상품 (IOI17_prize) | C++17 | 14 ms | 11160 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define sz(a) ((int)(a).size())
typedef vector<int> vint;
typedef vector<vint> vvint;
typedef long long ll;
#ifndef wambule
#include "prize.h"
#else
vint ask(int) { return vint(0); }
#endif
mt19937_64 rnd(time(0));
int R(int l, int r) {
return l + rnd() % (r - l + 1);
}
vvint cch;
vint A(int i) {
if(cch[i][0] == -1) cch[i] = ask(i);
return cch[i];
}
int find_best(int n) {
cch.resize(n, vint(2, -1));
int cm = 0;
for(int i = 1; i <= 30; ++i) {
int x = R(0, n - 1);
cm = max(cm, A(x)[0] + A(x)[1]);
if(A(x)[0] + A(x)[1] == 0) return x;
}
for(int i = 0; i < n; ++i) {
if(A(i)[0] + A(i)[1] == +0) return i;
if(A(i)[0] + A(i)[1] == cm) {
int l = i, r = n - 1, m;
while(l < r) {
int m = l + r + 1 >> 1;
while(A(m)[0] + A(m)[1] < cm) {
--m;
r = m;
}
if(A(m)[1] == A(i)[1]) l = m;
else r = m - 1;
}
i = l + 1;
}
}
return 0;
}
#ifdef wambule
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
return 0;
}
#endif
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |