题库练习 Game of the Rows
← 上一题 下一题 →

A11135 | Game of the Rows

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

题目描述

Daenerys Targaryen has an army consisting of $k$ groups of soldiers, the $i$ -th group contains $a_{i}$ soldiers. She wants to bring her army to the other side of the sea to get the Iron Throne. She has recently bought an airplane to carry her army through the sea. The airplane has $n$ rows, each of them has $8$ seats. We call two seats neighbor, if they are in the same row and in seats ${1,2}$ , ${3,4}$ , ${4,5}$ , ${5,6}$ or ${7,8}$ .

![](/uploads/acgo/image/847c28c5192fe38c_caf023b68e0f.jpeg)A row in the airplaneDaenerys Targaryen wants to place her army in the plane so that there are no two soldiers from different groups sitting on neighboring seats.

Your task is to determine if there is a possible arranging of her army in the airplane such that the condition above is satisfied.

输入格式

The first line contains two integers $n$ and $k$ ( $1<=n<=10000$ , $1<=k<=100$ ) — the number of rows and the number of groups of soldiers, respectively.

The second line contains $k$ integers $a_{1},a_{2},a_{3},...,a_{k}$ ( $1<=a_{i}<=10000$ ), where $a_{i}$ denotes the number of soldiers in the $i$ -th group.

It is guaranteed that $a_{1}+a_{2}+...+a_{k}<=8·n$ .

输出格式

If we can place the soldiers in the airplane print "YES" (without quotes). Otherwise print "NO" (without quotes).

You can choose the case (lower or upper) for each letter arbitrary.

输入输出样例

输入 #1
2 2
5 8
输出 #1
YES
输入 #2
1 2
7 1
输出 #2
NO
输入 #3
1 2
4 4
输出 #3
YES
输入 #4
1 4
2 2 1 2
输出 #4
YES
C++ 编辑器
输入
输出