QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#588806 | #6394. Turn on the Light | yumingsk# | WA | 1ms | 3716kb | C++14 | 1.3kb | 2024-09-25 14:39:54 | 2024-09-25 14:39:55 |
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;
int fh = 0;
int print(int x)
{
cout << "? " << x << endl;
int c;
cin >> c;
return c - fh;
}
int f(int l, int r)
{
// cout << l << ' ' << r << '\n';
if (l == r)
return l;
int num = 0;
int ttt = 1;
int i;
for (i = l; i <= r; i += ttt)
{
ttt *= 2;
int nxt = print(i);
// cout << l << ' ' << r << ' ' << i << ' ' << ttt << '\n';
num++;
if (nxt == num)
continue;
else if (nxt == num - 1)
{
return i;
}
else
{
fh += nxt;
if (i - ttt / 2 <= i - 1)
return f(i - ttt / 2, i - 1);
}
}
// cout << i << ' ' << ttt << '\n';
if (i - ttt + 1 <= r)
return f(i - ttt + 1, r);
}
void solve()
{
int n;
cin >> n;
int res = f(1, n);
cout << "! " << res << endl;
}
int main()
{
// IOS;
int t = 1;
// cin >> t;
while (t--)
{
solve();
}
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 1ms
memory: 3688kb
input:
3 1 1
output:
? 1 ? 3 ! 3
result:
ok Correct position at 3
Test #2:
score: -100
Wrong Answer
time: 1ms
memory: 3716kb
input:
10 1 2 3 4
output:
? 1 ? 3 ? 7 ? 8 ! 7
result:
wrong answer Wrong answer, more than 1 possible light!