QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#607499#8939. PermutationUESTC_NLNS#WA 55ms3804kbC++14982b2024-10-03 15:04:142024-10-03 15:04:15

Judging History

This is the latest submission verdict.

  • [2024-10-03 15:04:15]
  • Judged
  • Verdict: WA
  • Time: 55ms
  • Memory: 3804kb
  • [2024-10-03 15:04:14]
  • 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)*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-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;
}

詳細信息

Test #1:

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

input:

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

output:

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

result:

ok Correct (3 test cases)

Test #2:

score: -100
Wrong Answer
time: 55ms
memory: 3804kb

input:

10000
10
2
2
2
1
3
10
10
10
10
7
10
5
1
10
9
10
4
4
4
4
4
10
10
6
3
2
10
3
3
3
2
10
1
5
9
9
9
10
1
3
8
8
10
2
4
9
9
8
10
3
3
3
3
2
10
4
1
7
8
9
10
8
7
1
2
10
4
1
9
9
8
10
7
7
7
7
6
10
5
1
7
8
10
10
8
8
8
6
9
10
2
2
1
5
10
6
6
4
10
10
10
1
3
8
8
10
7
9
1
2
10
7
4
1
2
10
3
4
7
8
10
10
4
4
4
3
6
10
8
7...

output:

? 1 10
? 1 6
? 1 4
? 1 2
? 3 4
! 4
? 1 10
? 4 10
? 6 10
? 7 10
! 6
? 1 10
? 1 6
? 7 10
? 8 10
! 7
? 1 10
? 1 6
? 2 6
? 2 4
? 3 4
! 3
? 1 10
? 4 10
? 1 3
? 2 3
! 1
? 1 10
? 1 6
? 1 4
? 2 4
! 1
? 1 10
? 1 6
? 7 10
? 8 10
? 8 9
! 8
? 1 10
? 1 6
? 7 10
? 7 8
! 7
? 1 10
? 1 6
? 7 10
? 8 10
? 8 9
! 10
? 1...

result:

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