2793. Central Element

单点时限: 2.0 sec

内存限制: 256 MB

This is an interactive problem.

There is a permutation P of numbers 1 through n, not known to you, P = (P1,P2,…,Pn). You can ask the following type of questions: Given three distinct positions i, j and k, which of Pi, Pj and Pk is central? Element is central if it is neither minimal nor maximal.

For example, if the permutation is (2, 1, 4, 3), and you ask about positions 1, 2, and 3, you receive 2, because 2 is the central element of the set (P1, P2, P3) =(2, 1, 4). Note that you don't get the information at which position among 1, 2, and 3 it is located.

Your task is to find the permutation P. Actually, for each permutation P there is a set S(P) of permutations that cannot be distinguished from P using the allowed questions. You must find any permutation from this set.

Interaction protocol

First, your program must read from the standard input one line with the integer n, the size of the permutation.

The program must write to the standard output one line with three positions that you ask a question about and wait for a line in the standard input with a response, then write next question and read next response, and so on until you know the permutation P up to S(P).

Once you know the answer, output one line with the word “OK” and the permutation P.

输入格式

The first line of the standard input contains n, the size of the permutation (3 <= n <= 200).

Each of the next lines of the standard input contains response to your question — the number that is central among the numbers at the asked positions.

输出格式

When you're asking questions, each line of the standard output should contain three different integers from the range of 1 to n, space-separated. You can ask at most 2 000 questions.

When you're stating the answer, the line of the standard output should contain the word “OK”, and the numbers P1, P2, … , Pn, all space-separated. After printing this line your program must exit.

You must flush standard output after printing each line.

样例

Input
4
2
3
2
3
Output
1 2 3
2 3 4
1 2 4
1 3 4
OK 2 1 4 3

5 人解决,7 人已尝试。

7 份提交通过,共有 19 份提交。

7.2 EMB 奖励。

创建: 14 年前.

修改: 6 年,8 月前.

最后提交: 10 年,5 月前.

来源: Northeastern European Regional Contest 2009

题目标签