eolymp
bolt
Try our new interface for solving problems
Problems

Flipping Cards

Flipping Cards

Mike and his young daughter Jesse are playing a new card game meant for kids. The rules are quite simple, each player is dealt a hand of cards. Each card has one picture on each side. They take turns playing cards and the first one to run out of cards is the winner. A player's turn consists of picking a subset of cards from their hand and laying them on the table. The only rule is that the cards must be placed on the table such that no two cards are showing the same picture. Mike thought this was a very appropriate game to play with his kid because of the simple rules. Mike also liked this game because finding the best strategy is an algorithmically interesting challenge! Help Mike determine if he can play his entire hand on his first round. \InputFile The first line contains a single positive integer $t\:(t \le 10)$ indicating the number of test cases. Each test case begins with a single integer $n\:(1 \le n \le 50000)$ denoting the number of cards in Mike's hand. Following this are $n$ lines, each describing a card in Mike's hand. The pictures on the cards are represented by integers. The $i$-th card is given by two integers $p_i, q_i$ where $1 \le p_i, q_i \le 2n$. \OutputFile For each test case you should output a single line with the word \textbf{possible} if it is possible for Mike to play his entire hand in one turn, or \textbf{impossible} if Mike cannot play his entire hand in one turn.
Time limit 2 seconds
Memory limit 128 MiB
Input example #1
3
3
1 2
1 3
2 3
3
1 2
1 2
1 2
1
1 1
Output example #1
possible
impossible
possible
Source 2015 ACM North America - Rocky Mountain, Problem B