308384: CF1510I. Is It Rated?

Memory Limit:512 MB Time Limit:3 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Is It Rated?

题意翻译

你和$n$个人做$m$道判断题,每次都是你最后做,可以看到其他 n 个人的答案。你做完之后公布答案。 但是你一道题目都不会,只能靠瞎蒙。要求最多只能错$1.3b+100$ 次。其中$b$是题目全部做完后,错的最少的人错误的次数。 输出你每一道题的答案。

题目描述

The popular improv website Interpretation Impetus hosts regular improv contests and maintains a rating of the best performers. However, since improv can often go horribly wrong, the website is notorious for declaring improv contests unrated. It now holds a wager before each improv contest where the participants try to predict whether it will be rated or unrated, and they are now more popular than the improv itself. Izzy and $ n $ other participants take part in each wager. First, they each make their prediction, expressed as 1 ("rated") or 0 ("unrated"). Izzy always goes last, so she knows the predictions of the other participants when making her own. Then, the actual competition takes place and it is declared either rated or unrated. You need to write a program that will interactively play as Izzy. There will be $ m $ wagers held in 2021, and Izzy's goal is to have at most $ 1.3\cdot b + 100 $ wrong predictions after all those wagers, where $ b $ is the smallest number of wrong predictions that any other wager participant will have after all those wagers. The number $ b $ is not known in advance. Izzy also knows nothing about the other participants — they might somehow always guess correctly, or their predictions might be correlated. Izzy's predictions, though, do not affect the predictions of the other participants and the decision on the contest being rated or not — in other words, in each test case, your program always receives the same inputs, no matter what it outputs.

输入输出格式

输入格式


输出格式


First, a solution must read two integers $ n $ ( $ 1 \le n \le 1000 $ ) and $ m $ ( $ 1 \le m \le 10\,000 $ ). Then, the solution must process $ m $ wagers. For each of them, the solution must first read a string consisting of $ n $ 0s and 1s, in which the $ i $ -th character denotes the guess of the $ i $ -th participant. Then, the solution must print Izzy's guess as 0 or 1. Don't forget to flush the output after printing it! Then, the solution must read the actual outcome, also as 0 or 1, and then proceed to the next wager, if this wasn't the last one. Your solution will be considered correct if it makes at most $ 1.3\cdot b + 100 $ mistakes, where $ b $ is the smallest number of mistakes made by any other participant. Note that if a solution outputs anything except 0 or 1 for a wager, it will be considered incorrect even if it made no other mistakes. There are 200 test cases in this problem.

输入输出样例

输入样例 #1

3 4
000

1
100

1
001

0
111

1

输出样例 #1

0


0


1


1

说明

In the example, the participants made 1, 2, and 3 mistakes respectively, therefore $ b=1 $ (the smallest of these numbers). Izzy made 3 mistakes, which were not more than $ 1.3\cdot b + 100=101.3 $ , so these outputs are good enough to pass this test case (as are any other valid outputs).

Input

题意翻译

你和$n$个人做$m$道判断题,每次都是你最后做,可以看到其他 n 个人的答案。你做完之后公布答案。 但是你一道题目都不会,只能靠瞎蒙。要求最多只能错$1.3b+100$ 次。其中$b$是题目全部做完后,错的最少的人错误的次数。 输出你每一道题的答案。

加入题单

算法标签: