QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#607507#8939. PermutationUESTC_NLNS#WA 34ms4092kbC++14986b2024-10-03 15:06:062024-10-03 15:06:06

Judging History

This is the latest submission verdict.

  • [2024-10-03 15:06:06]
  • Judged
  • Verdict: WA
  • Time: 34ms
  • Memory: 4092kb
  • [2024-10-03 15:06:06]
  • Submitted

answer

#include<bits/stdc++.h>
#define ll long long
using namespace std;
unordered_map<ll,int> mp;
const int N=1e6+5;
void answer(int x)
{
	printf("! %d\n",x);
	fflush(stdout);
	return;
}
int query(int l,int r)
{
	if(mp.find(1ll*r*N+l)!=mp.end()) return mp[1ll*r*N+l];
	int x;
	printf("? %d %d\n",l,r);
	fflush(stdout);
	scanf("%d",&x);
	mp[1ll*r*N+l]=x;
	return x;
}
void solve(int l,int r)
{
	if(l==r)
	{
		answer(l);
		return;
	}
	int mid=(l+r)/2,lmid,x=query(l,r),y;
	if(l+1==r)
	{
		if(x==l) answer(r);
		else answer(l);
		return;
	}
	if(x<=mid)
	{
		lmid=(r-l+1)*0.618+l;
		if(lmid==r) lmid--;
		y=query(l,lmid);
		if(x==y) solve(l,lmid);
		else solve(lmid+1,r);
	}
	else
	{
		lmid=(r-l+1)*(1-0.618)+l;
		if(lmid==l) lmid++;
		y=query(lmid,r);
		if(x==y) solve(lmid,r);
		else solve(l,lmid-1);
	}
	return;
}
int T,n;
int main()
{
	scanf("%d",&T);
	while(T--)
	{
		scanf("%d",&n);
		solve(1,n);
		mp.clear();
	}
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 3744kb

input:

3
5
3
3
3
2
6
6
3
1
4
3
3
2

output:

? 1 5
? 1 4
? 2 4
? 2 3
! 4
? 1 6
? 3 6
? 1 2
! 2
? 1 4
? 2 4
? 2 3
! 4

result:

ok Correct (3 test cases)

Test #2:

score: -100
Wrong Answer
time: 34ms
memory: 4092kb

input:

10000
10
2
2
2
2
3
10
10
10
10
7
10
5
5
5
4
10
4
4
4
4
4

output:

? 1 10
? 1 7
? 1 5
? 1 4
? 1 3
! 4
? 1 10
? 4 10
? 6 10
? 7 10
! 6
? 1 10
? 1 7
? 3 7
? 3 6
! 7
? 1 10
? 1 7
? 1 5
? 2 5
? 3 5
? 3 4

result:

wrong answer Too many queries , n = 10 , now_q 6 (test case 4)