Codeforces 1136F Cooperative Game (神仙题)

Posted pkgunboat

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces 1136F Cooperative Game (神仙题)相关的知识,希望对你有一定的参考价值。

这种题就是难者不会,会者不难。

博客讲的很详细了

代码:

#include <bits/stdc++.h>
using namespace std;
string s;
int read() {
	int n;
	scanf("%d", &n);
	for (int i = 1; i <= n; i++)
		cin >> s;
	return n;
}
int main() {
	while(1) {
		printf("next 0
");
		fflush(stdout);
		read();
		printf("next 0 1
");
		fflush(stdout);
		if(read() == 2) break;
	}
	while(1) {
		printf("next 0 1 2 3 4 5 6 7 8 9
");
		fflush(stdout);
		if(read() == 1) {
			printf("done
");
			fflush(stdout);
			break;
		}
	}
} 

  

以上是关于Codeforces 1136F Cooperative Game (神仙题)的主要内容,如果未能解决你的问题,请参考以下文章

codeforces上怎么看测试数据

如何看codeforces做了多少题

codeforces上怎么看测试数据

codeforces比赛后怎么看题解和答案

codeforces是啥?

codeforces Codeforces 650A Watchmen