이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define pb emplace_back
#define AI(i) begin(i), end(i)
template<class T> bool chmin(T &a, T b) { return b < a && (a = b, true); }
template<class T> bool chmax(T &a, T b) { return a < b && (a = b, true); }
#ifdef KEV
#define DE(args...) kout("[ " + string(#args) + " ] = ", args)
void kout() { cerr << endl; }
template<class T, class ...U> void kout(T a, U ...b) { cerr << a << ' ', kout(b...); }
template<class T> void debug(T l, T r) { while (l != r) cerr << *l << " \n"[next(l)==r], ++l; }
#else
#define DE(...) 0
#define debug(...) 0
#endif
#include "prize.h"
const int MAX_N = 300010;
vector<int> qry(int id) {
static vector<int> mem[MAX_N];
if (mem[id].size()) return mem[id];
return mem[id] = ask(id);
}
int sum(int id) {
return qry(id)[0] + qry(id)[1];
}
int find_best(int n) {
int cnt = 1, m, h = 0;
set<int> small;
while (h < n) {
while (sum(h) < cnt) {
if (sum(h) == 0) return h;
++h;
}
cnt = sum(h);
int l = h;
while (small.size() && *small.begin() <= l)
small.erase(small.begin());
for (int j = 1<<9;j > 0;j >>= 1) {
if (l + j >= n || small.size() && l + j >= *small.begin()) continue;
int m = l + j;
if (sum(m) > cnt) {
cnt = sum(m);
break;
}
if (sum(m) == cnt && qry(m)[0] == qry(h)[0])
l = m;
if (sum(m) < cnt) {
small.insert(m);
}
if (sum(m) == 0) return m;
}
if (sum(h) != cnt) continue;
h = l + 1;
}
assert(false);
}
컴파일 시 표준 에러 (stderr) 메시지
prize.cpp: In function 'int find_best(int)':
prize.cpp:52:35: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
52 | if (l + j >= n || small.size() && l + j >= *small.begin()) continue;
| ~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
prize.cpp:35:15: warning: unused variable 'm' [-Wunused-variable]
35 | int cnt = 1, m, h = 0;
| ^
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |