# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
291897 | Berted | Colors (BOI20_colors) | C++14 | 0 ms | 256 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <set>
#include <assert.h>
#define ll long long
using namespace std;
ll n;
inline bool ask(ll x)
{
bool ret;
assert(1 <= x && x <= n);
cout << "? " << x << endl;
cin >> ret;
return ret;
}
int main()
{
int t; cin >> t;
while (t--)
{
cin >> n;
ll s = 0, c = 0, L = 1, R = n - 1;
for (int i = 0; L <= R; i++)
{
ll M = (R - L + 1 > 2) ? (L + R >> 1) : R;
if (i & 1) {c -= M;}
else {c += M;}
s = min(s, c);
L = M + 1;
}
s = -s + 1;
L = 1, R = n - 1; ll ans = n;
if (n > 1) ask(s);
for (int i = 0; L <= R; i++)
{
ll M = (R - L + 1 > 2) ? (L + R >> 1) : R;
if (i & 1) s -= M;
else s += M;
if (ask(s)) {ans = M; R = M - 1;}
else {L = M + 1;}
}
cout << "= " << ans << endl;
}
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |