码迷,mamicode.com
首页 > 其他好文 > 详细

Codeforces 1136F Cooperative Game (神仙题)

时间:2019-03-21 01:16:17      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:com   ret   while   pre   ext   for   targe   int   blank   

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

博客讲的很详细了

代码:

#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\n");
		fflush(stdout);
		read();
		printf("next 0 1\n");
		fflush(stdout);
		if(read() == 2) break;
	}
	while(1) {
		printf("next 0 1 2 3 4 5 6 7 8 9\n");
		fflush(stdout);
		if(read() == 1) {
			printf("done\n");
			fflush(stdout);
			break;
		}
	}
} 

  

Codeforces 1136F Cooperative Game (神仙题)

标签:com   ret   while   pre   ext   for   targe   int   blank   

原文地址:https://www.cnblogs.com/pkgunboat/p/10568995.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!