# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
834104 | caganyanmaz | 커다란 상품 (IOI17_prize) | C++17 | 4 ms | 208 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define pb push_back
#include "prize.h"
using namespace std;
//#define DEBUGGING
#ifdef DEBUGGING
#include "../debug.h"
#else
#define debug(x...) void(42)
#endif
constexpr static int BLOCK_SIZE = 500;
constexpr static int LBN = 5000;
constexpr static int MXN = 2e5;
bitset<MXN> expensive;
int brute(int n);
int find_best(int n)
{
// Get rid of smaller cases
if (n < 5000)
return brute(n);
// Finding one cheap prize (getting expesive ones are better)
int ecount = 0;
vector<int> c;
for (int i = 0; i < BLOCK_SIZE; i++)
{
vector<int> v = ask(i);
c.pb(v[0] + v[1]);
ecount = max(ecount, c[0]);
}
int s = 0;
vector<int> vv;
for (int i = 0; i < BLOCK_SIZE; i++)
{
if (c[i] != ecount)
{
expensive[i] = true;
vv.pb(i);
}
}
while (vv.size() < ecount)
{
int l = 0, r = n;
while (r - l > 1)
{
int m = l+r>>1;
int j = m;
while (expensive[j])
j++;
vector<int> v = ask(j);
if (v[0] + v[1] < ecount)
{
l = j;
expensive[j] = true;
break;
}
if (v[0] > upper_bound(vv.begin(), vv.end(), j) - vv.begin())
l = j;
else
r = j;
}
vv.insert(lower_bound(vv.begin(), vv.end(), l), l);
}
for (int i = 0; i < n; i++)
{
if (expensive[i])
{
vector<int> v = ask(i);
if (v[0] + v[1] == 0)
return i;
}
}
return 0;
}
int brute(int n)
{
for (int i = 0; i < n; i++)
{
vector<int> v = ask(i);
if (v[0] + v[1] == 0)
return i;
}
return -1;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |