题库练习 Open Communication
← 上一题 下一题 →

A11793 | Open Communication

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

Two participants are each given a pair of distinct numbers from 1 to 9 such that there's exactly one number that is present in both pairs. They want to figure out the number that matches by using a communication channel you have access to without revealing it to you.

Both participants communicated to each other a set of pairs of numbers, that includes the pair given to them. Each pair in the communicated sets comprises two different numbers.

Determine if you can with certainty deduce the common number, or if you can determine with certainty that both participants know the number but you do not.

输入格式

The first line contains two integers $n$ and $m$ ( $1 \le n, m \le 12$ ) — the number of pairs the first participant communicated to the second and vice versa.

The second line contains $n$ pairs of integers, each between $1$ and $9$ , — pairs of numbers communicated from first participant to the second.

The third line contains $m$ pairs of integers, each between $1$ and $9$ , — pairs of numbers communicated from the second participant to the first.

All pairs within each set are distinct (in particular, if there is a pair $(1,2)$ , there will be no pair $(2,1)$ within the same set), and no pair contains the same number twice.

It is guaranteed that the two sets do not contradict the statements, in other words, there is pair from the first set and a pair from the second set that share exactly one number.

输出格式

If you can deduce the shared number with certainty, print that number.

If you can with certainty deduce that both participants know the shared number, but you do not know it, print $0$ .

Otherwise print $-1$ .

输入输出样例

输入 #1
2 2
1 2 3 4
1 5 3 4
输出 #1
1
输入 #2
2 2
1 2 3 4
1 5 6 4
输出 #2
0
输入 #3
2 3
1 2 4 5
1 2 1 3 2 3
输出 #3
-1
C++ 编辑器
输入
输出