CF1368F.Lamps on a Circle

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

This is an interactive problem.

John and his imaginary friend play a game. There are nn lamps arranged in a circle. Lamps are numbered 11 through nn in clockwise order, that is, lamps ii and i+1i + 1 are adjacent for any i=1,,n1i = 1, \ldots, n - 1 , and also lamps nn and 11 are adjacent. Initially all lamps are turned off.

John and his friend take turns, with John moving first. On his turn John can choose to terminate the game, or to make a move. To make a move, John can choose any positive number kk and turn any kk lamps of his choosing on. In response to this move, John's friend will choose kk consecutive lamps and turn all of them off (the lamps in the range that were off before this move stay off). Note that the value of kk is the same as John's number on his last move. For example, if n=5n = 5 and John have just turned three lamps on, John's friend may choose to turn off lamps 1,2,31, 2, 3 , or 2,3,42, 3, 4 , or 3,4,53, 4, 5 , or 4,5,14, 5, 1 , or 5,1,25, 1, 2 .

After this, John may choose to terminate or move again, and so on. However, John can not make more than 10410^4 moves.

John wants to maximize the number of lamps turned on at the end of the game, while his friend wants to minimize this number. Your task is to provide a strategy for John to achieve optimal result. Your program will play interactively for John against the jury's interactor program playing for John's friend.

Suppose there are nn lamps in the game. Let R(n)R(n) be the number of turned on lamps at the end of the game if both players act optimally. Your program has to terminate the game with at least R(n)R(n) turned on lamps within 10410^4 moves. Refer to Interaction section below for interaction details.

For technical reasons hacks for this problem are disabled.

输入格式

输出格式

Initially your program will be fed a single integer nn ( 1n10001 \leq n \leq 1000 ) — the number of lamps in the game. Then the interactor will wait for your actions.

To make a move, print a line starting with an integer kk ( 1kn1 \leq k \leq n ), followed by kk distinct integers l1,,lkl_1, \ldots, l_k ( 1lin1 \leq l_i \leq n ) — indices of lamps you want to turn on. The indices may be printed in any order. It is allowed to try to turn on a lamp that is already on (although this will have no effect).

If your move was invalid for any reason, or if you have made more than 10410^4 moves, the interactor will reply with a line containing a single integer 1-1 . Otherwise, the reply will be a line containing a single integer xx ( 1xn)1 \leq x \leq n) , meaning that the response was to turn off kk consecutive lamps starting from xx in clockwise order.

To terminate the game instead of making a move, print a line containing a single integer 00 . The test will be passed if at this point there are at least R(n)R(n) lamps turned on (note that neither R(n)R(n) , nor the verdict received are not communicated to your program in any way). This action does not count towards the number of moves (that is, it is legal to terminate the game after exactly 10410^4 moves).

To receive the correct verdict, your program should terminate immediately after printing 00 , or after receiving 1-1 as a response.

Don't forget to flush your output after every action.

输入输出样例

  • 输入#1

    3

    输出#1

    0
  • 输入#2

    4
    
    1

    输出#2

    2 1 3
    
    0

说明/提示

When n=3n = 3 , any John's move can be reversed, thus R(3)=0R(3) = 0 , and terminating the game immediately is correct.

R(4)=1R(4) = 1 , and one strategy to achieve this result is shown in the second sample case.

Blank lines in sample interactions are for clarity and should not be printed.

首页