A13440 | Yui and Mahjong Set
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
This is an interactive problem.
Yui is a girl who enjoys playing Mahjong.
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$ .
Yui is a girl who enjoys playing Mahjong.
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.
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.
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
In the first test, the initial set of tiles is $\{1, 1, 2, 3, 3, 3, 5, 5\}$ . It has only one triplet subset $\{3, 3, 3\}$ and six straight subsets, all equal to $\{1, 2, 3\}$ . After inserting a tile with value $1$ the set of tiles will be $\{1, 1, 1, 2, 3, 3, 3, 5, 5\}$ and will have two triplet subsets $\{1, 1, 1\}$ , $\{3, 3, 3\}$ and nine straight subsets, all equal to $\{1, 2, 3\}$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted