CF1906C.Cursed Game

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You found an antique box in your warehouse and decided to open it. The moment you open the box, it traps you into a cursed game where you are playing against a demon. The game consists of 333333 rounds and you have to win all rounds in order to escape. The demon also gives you 999999 coins that you can use throughout all rounds.

Note that in this problem, denote cell (r,c)(r, c) of a grid as the cell in row rr and column cc of the grid.

Before the start of each round, the demon will prepare a secret paper, which can be represented as a grid with 33 rows and 33 columns, both numbered from 11 to 33 . The demon will secretly put a hole in one or more cells, and you are not aware which cells have a hole in it. Then, the round starts with the demon giving you an odd integer NN ( 3N333 \leq N \leq 33 ).

Within each round, you can ask the demon several queries, each costing you one coin. For each query, you are allowed to give the demon your paper, which can be represented as a grid with NN rows and NN columns, both numbered from 11 to NN . Each cell is coloured either black or white by you.

For each of your query, the demon will calculate a binary result grid with N2N - 2 rows and N2N - 2 columns, both numbered from 11 to N2N - 2 . The value on cell (r,c)(r, c) of the result grid is filled as follows.

  • The demon will put the secret paper on top of your paper such that the cell (r+i1,c+j1)(r + i - 1, c + j - 1) of your paper aligns with the cell (i,j)(i, j) of the secret paper, for 1i,j31 \leq i, j \leq 3 .
  • The demon can only see the colour of the cell in your paper if the corresponding cell in the secret paper has a hole in it.
  • The value on cell (r,c)(r, c) of the result grid is 11 if there is an odd number of black cells that it can see through the holes, or 00 otherwise.

You win the round if the result grid consists of only the values 11 . Otherwise, the demon will give you the result grid as a feedback, and the round continues.

If you have spent all the coins and still did not win all the rounds, then you will be trapped forever. Escape the cursed game!

输入格式

输出格式

说明/提示

Sample Interaction #1

The following interaction only shows 22 rounds. The actual interaction stays until you win all 333333 rounds or you run out of coins.

Explanation for the sample interaction #1

For the first round, the following illustration shows how the demon finds the value in cell (1,1)(1, 1) of the result grid for the first and second queries. The grey-colored square represents the secret paper, and the circles represent the holes. In the first query, there are 44 black cells that can be seen through the holes, therefore the value in cell (1,1)(1, 1) of the result grid is 00 . In the second query, there are 55 black cells that can be seen through the holes, therefore the value in cell (1,1)(1, 1) of the result grid is 11 . As the result grid consists of only 1, the first round ends.

For the second round, the following illustration shows how the demon find the value in cell (2,1)(2, 1) of the result grid for the first query. Since there are 22 black cells that can be seen through the holes, the value in cell (2,1)(2, 1) is 00 .

首页