#abc305f. [abc305_f]Dungeon Explore

[abc305_f]Dungeon Explore

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

  • 2leqNleq1002\\leq N\\leq100
  • N1leqMleqdfracN(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:

NN MM

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:

kk v1v _ 1 v2v _ 2 ldots\\ldots vkv _ k

Here, vi(1leqileqk)v _ i\\ (1\\leq i\\leq k) are integers between 11 and NN such that v1ltv2ltcdotsltvkv _ 1\\lt v _ 2\\lt\\cdots\\lt v _ k.

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

viv _ 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