#P14847. [ICPC 2022 Yokohama R] Make a Loop
[ICPC 2022 Yokohama R] Make a Loop
题目描述
Taro is playing with a set of toy rail tracks. All of the tracks are arc-shaped with a right central angle (an angle of degrees), but with many different radii. He is trying to construct a single loop using all of them. Here, a set of tracks is said to form a single loop when both ends of all the tracks are smoothly joined to some other track, and all the tracks are connected to all the other tracks directly or indirectly. Please tell Taro whether he can ever achieve that or not.
Tracks may be joined in an arbitrary order, but their directions are restricted by the directions of adjacent tracks, as they must be joined smoothly. For example, if you place a track so that a train enters eastward and turns degrees northward, you must place the next track so that the train enters northward and turns degrees to either east or west (Figure F.1). Tracks may cross or even overlap each other as elevated construction is possible.
:::align{center}

Figure F.1. Example of smoothly joining tracks :::
输入格式
The input consists of a single test case in the following format.
represents the number of tracks, which is an even integer satisfying . Each represents the radius of the -th track, which is an integer satisfying .
输出格式
If it is possible to construct a single loop using all of the tracks, print Yes; otherwise, print No.
4
1 1 1 1
Yes
6
1 3 1 3 1 3
Yes
6
2 2 1 1 1 1
No
8
99 98 15 10 10 5 2 1
Yes
提示
Possible loops for the sample inputs 1, 2, and 4 are depicted in the following figures.
:::align{center}
Figure F.2. Possible loops for the sample inputs
:::