시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 512 MB206642.857%

문제

A group of perfect logicians has again received a request to be the main protagonists of a new logic puzzle. They must now agree upon which n of them should participate.

This time the logic puzzle takes place on an undirected graph with n nodes, and logically, n edges. Each edge connects two different nodes and between any two nodes there is at most one edge. Additionally, the graph is connected, which means that it is possible to go from any node to any other node via a sequence of edges. For each node there will be one logician located on that node and each logician is able to see precisely those logicians whose nodes are connected by an edge with their own node.

They already suspected that the catch might be related to their eye color, so they decided to arrange themselves so that each logician sees exactly one other person with blue eyes. As it ususally happens to be, none of the logicians can see their own eye color, which means that even logicians with blue eyes should see exactly one other person with blue eyes.

What is the least number of blue-eyed logicians needed to make the required arrangement?

입력

The first line contains the integer n - the number of nodes in the graph, and also the number of logicians.

The following n lines contain pairs of integers representing the edges of the graph. Each edge connects two different nodes and no edge is repeated twice in the input.

출력

If the required arrangement does not exist, in the first and only line output -1.

Otherwise, in the first and only line output the required least number of blue-eyed logicians.

제한

In every subtask, it holds that 3 ≤ n ≤ 100 000.

서브태스크

번호배점제한
110

Each logician sees exactly two other logicians.

210

3 ≤ n ≤ 20

340

3 ≤ n ≤ 1000

450

3 ≤ n ≤ 100 000

예제 입력 1

4
1 2
2 3
3 4
4 1

예제 출력 1

2

예제 입력 2

3
1 2
2 3
3 1

예제 출력 2

-1

예제 입력 3

7
1 2
2 3
3 4
4 5
5 6
6 7
2 4

예제 출력 3

4

힌트

Clarification of the first example: Blue-eyed logicians could for example be those on nodes 1 and 2.

Clarification of the second example: If only one of the logicians has blue eyes, then he surely can’t see anyone else with blue eyes. If there are two or more of them with blue eyes, then surely someone will see more than one person with blue eyes.

채점 및 기타 정보

  • 예제는 채점하지 않는다.