QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#589498 | #6394. Turn on the Light | yumingsk# | WA | 1ms | 3640kb | C++14 | 1.5kb | 2024-09-25 18:10:36 | 2024-09-25 18:10:36 |
Judging History
answer
#pragma GCC optimize(3, "Ofast", "inline")
#include <iostream>
#include <bits/stdc++.h>
#define IOS ios::sync_with_stdio(false), cin.tie(0), cout.tie(0)
#define INF 0x3f3f3f3f
#define L_INF 0x7f3f3f3f3f3f3f3f
#define db cout << "debug\n";
using namespace std;
const int Mod = 998244353;
using ll = long long;
#define int long long
int print(int x)
{
cout << "? " << x << endl;
int c;
cin >> c;
return c;
}
void solve()
{
int n;
cin >> n;
int lst = 0;
// int cur = 0;
int l = 1;
int r = n;
while (1)
{
int cur = print(l);
if (cur == lst)
{
cout << "! " << l << endl;
return;
}
l++;
lst = cur;
while (l <= r)
{
if (l == r)
{
cout << "! " << l << endl;
return;
}
int mid = l + r >> 1;
cur = print(mid);
if (cur > lst)
{
l = mid + 1;
lst = cur;
}
else if (cur == lst)
{
cout << "! " << mid << endl;
return;
}
else
{
r = mid - 1;
lst = cur;
}
}
}
}
signed main()
{
// IOS;
int t = 1;
// cin >> t;
while (t--)
{
solve();
}
return 0;
}
详细
Test #1:
score: 100
Accepted
time: 1ms
memory: 3640kb
input:
3 1 2
output:
? 1 ? 2 ! 3
result:
ok Correct position at 3
Test #2:
score: -100
Wrong Answer
time: 0ms
memory: 3636kb
input:
10 1 0 1 2
output:
? 1 ? 6 ? 3 ? 4 ! 5
result:
wrong answer Wrong answer, more than 1 possible light!