QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#607447#8939. PermutationUESTC_NLNS#WA 68ms4092kbC++141.0kb2024-10-03 14:57:032024-10-03 14:57:05

Judging History

This is the latest submission verdict.

  • [2024-10-03 14:57:05]
  • Judged
  • Verdict: WA
  • Time: 68ms
  • Memory: 4092kb
  • [2024-10-03 14:57:03]
  • 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 pp,n;
int query(int l,int r)
{
	if(l>=r)assert(0);
	if(mp.find(1ll*r*N+l)!=mp.end()) return mp[1ll*r*N+l];
	int x;
	printf("? %d %d\n",l,r);
	pp+=r-l+1;
//	assert(pp<=3*n);
	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)*2/3+l-1;
		if(lmid==r)--lmid;
		y=query(l,lmid);
		if(x==y) solve(l,lmid);
		else solve(lmid+1,r);
	}
	else
	{
		lmid=(r-l+1)/3+l;
		if(lmid==l)++lmid;
		y=query(lmid,r);
		if(x==y) solve(lmid,r);
		else solve(l,lmid-1);
	}
	return;
}
int T;
int main()
{
	scanf("%d",&T);
	while(T--)
	{
		scanf("%d",&n);pp=0;
		solve(1,n);
		mp.clear();
	}
	return 0;
}

详细

Test #1:

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

input:

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

output:

? 1 5
? 1 3
? 4 5
! 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: 68ms
memory: 4092kb

input:

10000
10
2
2
2
1
3
10
10
10
10
7
10
5
1
10
9
10
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
2...

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
? 3 6
? 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 10
? ...

result:

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