atcoder#ABC305F. [ABC305F] Dungeon Explore

[ABC305F] Dungeon Explore

Score : 525525 points

Problem Statement

This is an interactive problem (where your program and the judge program interact through Standard Input and Output).

There is a simple connected undirected graph with NN vertices and MM edges. The vertices are numbered with integers from 11 to NN.

Initially, you are at vertex 11. Repeat moving to an adjacent vertex at most 2N2N times to reach vertex NN.

Here, you do not initially know all edges of the graph, but you will be informed of the vertices adjacent to the vertex you are at.

Constraints

  • 2N1002\leq N\leq100
  • N1MN(N1)2N-1\leq M\leq\dfrac{N(N-1)}2
  • The graph is simple and connected.
  • All input values are integers.

Input and Output

First, receive the number of vertices NN and the number of edges MM in the graph from Standard Input:

N M

Next, you get to repeat the operation described in the problem statement at most 2N2N times against the judge.

At the beginning of each operation, the vertices adjacent to the vertex you are currently at are given from Standard Input in the following format:

k v _ 1 v _ 2 \ldots v _ k

Here, vi (1ik)v _ i\ (1\leq i\leq k) are integers between 11 and NN such that v1<v2<<vkv _ 1\lt v _ 2\lt\cdots\lt v _ k.

Choose one of vi (1ik)v _ i\ (1\leq i\leq k) and print it to Standard Output in the following format:

v _ i

After this operation, you will be at vertex viv _ i.

If you perform more than 2N2N operations or print invalid output, the judge will send -1 to Standard Input.

If the destination of a move is vertex NN, the judge will send OK to Standard Input and terminate.

When receiving -1 or OK, immediately terminate the program.

Notes

  • In each output, insert a newline at the end and flush Standard Output. Otherwise, the verdict may be TLE.
  • The verdict will be indeterminate if the program prints invalid output or quits prematurely in the middle of the interaction.
  • Terminate the program immediately after reaching vertex NN. Otherwise, the verdict will be indeterminate.
  • The judge for this problem is adaptive. This means that the graph may change without contradicting the constraints or previous outputs.

Sample Interaction

In the following sample interaction, we have N=4N=4, M=5M=5, and the graph in the figure below.

Input Output Description
4 5 NN and MM are given.
2 2 3 You start at vertex 11. The vertices adjacent to vertex 11 are given.
3 You choose to go to vertex v2=3v _ 2=3.
3 1 2 4 The vertices adjacent to vertex 33 are given.
2 You choose to go to vertex v2=2v _ 2=2.
3 1 3 4 The vertices adjacent to vertex 22 are given.
4 You choose to go to vertex v3=4v _ 3=4.
OK Since you have reached vertex 44 within 8(=2×4)8(=2\times4) moves, OK is passed.

You will be judged as correct if you immediately terminate the program after receiving OK.