# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
763705 | aaron_dcoder | Colors (BOI20_colors) | C++17 | 0 ms | 300 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
bool did_archie_notice(ll col) {
int ans;
cout << "? " << col << endl;
cin >> ans;
return (ans == 1);
}
int main() {
ll N;
cin >> N;
set<ll> used_up;
ll curren_hair_color = N/3 + 1;
did_archie_notice(curren_hair_color);
ll maximum_possible_value_C = N;
ll minimum_possible_value_C = 1;
ll next_direc = 1;
while (maximum_possible_value_C!=minimum_possible_value_C) {
//cout << "max pv:" << maximum_possible_value_C << ",min pv:" << minimum_possible_value_C << " ,haircol:" << curren_hair_color << "\n";
ll to_check = (maximum_possible_value_C+minimum_possible_value_C)/2;
ll oldhaircolor = curren_hair_color;
bool hasnoticed;
for (ll chk_disp = 0; chk_disp<N; chk_disp++) {
ll next_check= curren_hair_color + next_direc*(to_check-chk_disp);
if ((to_check-chk_disp) >= maximum_possible_value_C || (to_check-chk_disp) < minimum_possible_value_C) {
throw exception();
}
if (used_up.count(next_check)==0) {
used_up.insert(next_check);
hasnoticed = did_archie_notice(next_check);
curren_hair_color = next_check;
break;
}
next_check= curren_hair_color + next_direc*(to_check+chk_disp);
if ((to_check+chk_disp) >= maximum_possible_value_C || (to_check+chk_disp) < minimum_possible_value_C) {
throw exception();
}
if (used_up.count(next_check)==0) {
used_up.insert(next_check);
hasnoticed = did_archie_notice(next_check);
curren_hair_color = next_check;
break;
}
}
if (hasnoticed) {
maximum_possible_value_C = abs(oldhaircolor-curren_hair_color);
}
else {
minimum_possible_value_C = abs(oldhaircolor-curren_hair_color)+1;
}
next_direc *= -1;
}
cout << "= " << maximum_possible_value_C;
}
컴파일 시 표준 에러 (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... |