QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#641129#5702. Colorsatgc0 0ms3840kbC++231.0kb2024-10-14 18:42:332024-10-14 18:42:33

Judging History

你现在查看的是最新测评结果

  • [2024-10-14 18:42:33]
  • 评测
  • 测评结果:0
  • 用时:0ms
  • 内存:3840kb
  • [2024-10-14 18:42:33]
  • 提交

answer

#include<bits/stdc++.h>
#define int int64_t
using namespace std;
const int maxn = 2e5+10;
bool qry(int x){
	cout<<"? "<<x<<endl;
	bool res;cin>>res;return res;
}
void sol(){
	int n;cin>>n;
	int len=(n)/2;
	int cur=0;int stp=0;
	set<int>s;
	while(len<n){
		s.insert(cur);
		if(stp^=1)cur+=len;
		else cur-=len;
		len=(1+len+n)/2;
	}
	int dta=*s.begin();
	int l=1,r=n;
	cur=1-dta;stp=0;
	qry(cur);
	while(l<r){
		int md=(l+r)>>1;
		// if(stp^=1)cur+=md;
		// else cur-=md;
		if(cur+md>n)cur-=md;
		else if(cur-md<=0)cur+=md;
		else cur+=md;
		if(qry(cur))r=md;
		else l=md+1;
	}
	cout<<"= "<<r<<endl;
}

signed main() {
	// ios::sync_with_stdio(0),cin.tie(0);
	// int T;cin>>T;while(T--)
	sol();
	// const int n=8;
	// int len=n / 2;
	// int cur=0;int stp=0;
	// set<int>se;
	// while(len < n){
	// 	deb(len,cur);

	// 	assert(se.insert(cur).second);
	// 	if(stp^=1)cur+=len;
	// 	else cur-=len;
	// 	int nl=(1+len+n)/2;
	// 	len=nl;
	// }
	// se.insert(cur);

	// deb(se,se.size());
}

詳細信息

Subtask #1:

score: 0
Wrong Answer

Test #1:

score: 9
Accepted
time: 0ms
memory: 3840kb

input:

7
0
1
0
0

output:

? 3
? 7
? 5
? 2
= 4

result:

ok OK (4 queries)

Test #2:

score: 9
Accepted
time: 0ms
memory: 3588kb

input:

49
1
0
0
0
1
1
0

output:

? 17
? 42
? 5
? 48
? 2
? 47
? 3
= 45

result:

ok OK (7 queries)

Test #3:

score: 0
Wrong Answer
time: 0ms
memory: 3548kb

input:

10
1
1
1
1
0

output:

? 4
? 9
? 6
? 8
? 9
= 2

result:

wrong answer Hair color 9 was used multiple times

Subtask #2:

score: 0
Skipped

Dependency #1:

0%

Subtask #3:

score: 0
Skipped

Dependency #1:

0%

Subtask #4:

score: 0
Skipped

Dependency #1:

0%

Subtask #5:

score: 0
Skipped

Dependency #1:

0%