QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#251934 | #6394. Turn on the Light | ucup-team1074 | WA | 1ms | 3552kb | C++20 | 1.0kb | 2023-11-15 13:21:23 | 2023-11-15 13:21:23 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define LL long long
#define pb push_back
#define x first
#define y second
//#define endl '\n'
const LL maxn = 4e05+7;
const LL N=1e05+10;
const LL mod=1e09+7;
typedef pair<int,int>pl;
priority_queue<LL , vector<LL>, greater<LL> >t;
priority_queue<LL> q;
LL gcd(LL a, LL b){
return b > 0 ? gcd(b , a % b) : a;
}
LL lcm(LL a , LL b){
return a / gcd(a , b) * b;
}
int n , m;
int a[N];
void init(int n){
for(int i = 0 ; i <= n ; i ++){
a[i] = 0;
}
}
void solve()
{
int n;
cin >> n;
int x;
int prex = 0;
int l = 1 , r = n;
while(1){
int mid = (l + r) / 2;
cout<<"? "<<mid<<endl;
cin >> x;
if(x == prex){
cout<<"! " <<mid<<endl;
return;
}
else if(x < prex){
r = mid - 1;
}
else{
l = mid + 1;
}
prex = x;
}
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
cout.precision(10);
int t=1;
// cin>>t;
while(t--)
{
solve();
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 3552kb
input:
3 1 1
output:
? 2 ? 3 ! 3
result:
ok Correct position at 3
Test #2:
score: -100
Wrong Answer
time: 1ms
memory: 3396kb
input:
10 1 2 3 4 4
output:
? 5 ? 8 ? 9 ? 10 ? 10 ! 10
result:
wrong answer Wrong answer, more than 1 possible light!