307523: CF1368F. Lamps on a Circle

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

Description

Lamps on a Circle

题意翻译

这是一道交互题。 Alice 和 Bob 在玩游戏,有 $n$ 盏灯排成一个圈,顺时针标号为 $1\sim n$,初始所有灯都是关着的。 每轮操作为: - Alice 选择一个 $k\in [1,n]$ 然后打开任意 $k$ 盏灯(可以重复打开) - Bob 关闭一段长度为 $k$ 的区间的灯。 设 $R$ 表示经过若干轮后开着的灯的数量的最大值。 你需要在不超过 $10^4$ 次操作达到这个上界。 $n\le 1000$ - 请注意,灯是环形摆放。

题目描述

This is an interactive problem. John and his imaginary friend play a game. There are $ n $ lamps arranged in a circle. Lamps are numbered $ 1 $ through $ n $ in clockwise order, that is, lamps $ i $ and $ i + 1 $ are adjacent for any $ i = 1, \ldots, n - 1 $ , and also lamps $ n $ and $ 1 $ 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 $ k $ and turn any $ k $ lamps of his choosing on. In response to this move, John's friend will choose $ k $ 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 $ k $ is the same as John's number on his last move. For example, if $ n = 5 $ and John have just turned three lamps on, John's friend may choose to turn off lamps $ 1, 2, 3 $ , or $ 2, 3, 4 $ , or $ 3, 4, 5 $ , or $ 4, 5, 1 $ , or $ 5, 1, 2 $ . After this, John may choose to terminate or move again, and so on. However, John can not make more than $ 10^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 $ n $ lamps in the game. Let $ 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) $ turned on lamps within $ 10^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 $ n $ ( $ 1 \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 $ k $ ( $ 1 \leq k \leq n $ ), followed by $ k $ distinct integers $ l_1, \ldots, l_k $ ( $ 1 \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 $ 10^4 $ moves, the interactor will reply with a line containing a single integer $ -1 $ . Otherwise, the reply will be a line containing a single integer $ x $ ( $ 1 \leq x \leq n) $ , meaning that the response was to turn off $ k $ consecutive lamps starting from $ x $ in clockwise order. To terminate the game instead of making a move, print a line containing a single integer $ 0 $ . The test will be passed if at this point there are at least $ R(n) $ lamps turned on (note that neither $ 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 $ 10^4 $ moves). To receive the correct verdict, your program should terminate immediately after printing $ 0 $ , or after receiving $ -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 = 3 $ , any John's move can be reversed, thus $ R(3) = 0 $ , and terminating the game immediately is correct. $ R(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.

Input

题意翻译

这是一道交互题。 Alice 和 Bob 在玩游戏,有 $n$ 盏灯排成一个圈,顺时针标号为 $1\sim n$,初始所有灯都是关着的。 每轮操作为: - Alice 选择一个 $k\in [1,n]$ 然后打开任意 $k$ 盏灯(可以重复打开) - Bob 关闭一段长度为 $k$ 的区间的灯。 设 $R$ 表示经过若干轮后开着的灯的数量的最大值。 你需要在不超过 $10^4$ 次操作达到这个上界。 $n\le 1000$ - 请注意,灯是环形摆放。

加入题单

上一题 下一题 算法标签: