题库练习 Yui and Mahjong Set
← 上一题 下一题 →

A13440 | Yui and Mahjong Set

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

This is an interactive problem.

Yui is a girl who enjoys playing Mahjong.

![](/uploads/acgo/image/c63325a9f0dfb1cb_aea7f5e115fb.jpeg)She has a mysterious set which consists of tiles (this set can be empty). Each tile has an integer value between $1$ and $n$ , and at most $n$ tiles in the set have the same value. So the set can contain at most $n^2$ tiles.

You want to figure out which values are on the tiles. But Yui is shy, she prefers to play a guessing game with you.

Let's call a set consisting of three tiles triplet if their values are the same. For example, $\{2,\,2,\,2\}$ is a triplet, but $\{2,\,3,\,3\}$ is not.

Let's call a set consisting of three tiles straight if their values are consecutive integers. For example, $\{2,\,3,\,4\}$ is a straight, but $\{1,\,3,\,5\}$ is not.

At first, Yui gives you the number of triplet subsets and straight subsets of the initial set respectively. After that, you can insert a tile with an integer value between $1$ and $n$ into the set at most $n$ times. Every time you insert a tile, you will get the number of triplet subsets and straight subsets of the current set as well.

Note that two tiles with the same value are treated different. In other words, in the set $\{1,\,1,\,2,\,2,\,3\}$ you can find $4$ subsets $\{1,\,2,\,3\}$ .

Try to guess the number of tiles in the initial set with value $i$ for all integers $i$ from $1$ to $n$ .

输入格式

The first line contains a single integer $n$ ( $4 \le n \le 100$ ).

The second line contains two integers which represent the number of triplet subsets and straight subsets of the initial set respectively.

输出格式

When you are ready to answer, print a single line of form "! $a_1$ $a_2$ $\ldots$ $a_n$ " ( $0 \le a_i \le n$ ), where $a_i$ is equal to the number of tiles in the initial set with value $i$ .

Interaction

To insert a tile, print a single line of form "+ $x$ " ( $1 \le x \le n$ ), where $x$ is the value of the tile you insert. Then you should read two integers which represent the number of triplet subsets and straight subsets of the current set respectively.

After printing a line, do not forget to flush the output. Otherwise, you will get Idleness limit exceeded. To do this, use:

- fflush(stdout) or cout.flush() in C++;
- System.out.flush() in Java;
- flush(output) in Pascal;
- stdout.flush() in Python;
- see documentation for other languages.

You will get Wrong answer if you insert more than $n$ tiles.

Hacks

To make a hack you should provide a test in such format:

The first line contains a single integer $n$ ( $4 \le n \le 100$ ).

The second line contains $n$ integers $a_1,a_2,\ldots,a_n$ ( $0 \le a_i \le n$ ) — $a_i$ is equal to the number of tiles with value $i$ in the set.

输入输出样例

输入 #1
5
1 6
2 9
5 12
5 24
6 24
输出 #1
+ 1
+ 1
+ 2
+ 5
! 2 1 3 0 2
C++ 编辑器
输入
输出