101405: [AtCoder]ABC140 F - Many Slimes

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score : $600$ points

Problem Statement

We have one slime.

You can set the health of this slime to any integer value of your choice.

A slime reproduces every second by spawning another slime that has strictly less health. You can freely choose the health of each new slime. The first reproduction of our slime will happen in one second.

Determine if it is possible to set the healths of our first slime and the subsequent slimes spawn so that the multiset of the healths of the $2^N$ slimes that will exist in $N$ seconds equals a multiset $S$.

Here $S$ is a multiset containing $2^N$ (possibly duplicated) integers: $S_1,~S_2,~...,~S_{2^N}$.

Constraints

  • All values in input are integers.
  • $1 \leq N \leq 18$
  • $1 \leq S_i \leq 10^9$

Input

Input is given from Standard Input in the following format:

$N$
$S_1$ $S_2$ $...$ $S_{2^N}$

Output

If it is possible to set the healths of the first slime and the subsequent slimes spawn so that the multiset of the healths of the $2^N$ slimes that will exist in $N$ seconds equals $S$, print Yes; otherwise, print No.


Sample Input 1

2
4 2 3 1

Sample Output 1

Yes

We will show one way to make the multiset of the healths of the slimes that will exist in $2$ seconds equal to $S$.

First, set the health of the first slime to $4$.

By letting the first slime spawn a slime whose health is $3$, the healths of the slimes that exist in $1$ second can be $4,~3$.

Then, by letting the first slime spawn a slime whose health is $2$, and letting the second slime spawn a slime whose health is $1$, the healths of the slimes that exist in $2$ seconds can be $4,~3,~2,~1$, which is equal to $S$ as multisets.


Sample Input 2

2
1 2 3 1

Sample Output 2

Yes

$S$ may contain multiple instances of the same integer.


Sample Input 3

1
1 1

Sample Output 3

No

Sample Input 4

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

Sample Output 4

No

Input

题意翻译

你有一个史莱姆,你可以给他的健康值设置成任意整数,每个史莱姆每秒必然产生一个健康值严格小于它的史莱姆,这个健康值也由你来指定。 给定大小为2^n的集合S,求是否能够分裂出该集合。

加入题单

算法标签: