B. Game of the Rows
time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

Daenerys Targaryen has an army consisting of k groups of soldiers, the i-th group contains ai 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 nrows, 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}.

A row in the airplane

Daenerys 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.

Input

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 a1, a2, a3, ..., ak (1 ≤ ai ≤ 10000), where ai denotes the number of soldiers in the i-th group.

It is guaranteed that a1 + a2 + ... + ak ≤ 8·n.

Output

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.

Examples
input
2 2
5 8
output
YES
input
1 2
7 1
output
NO
input
1 2
4 4
output
YES
input
1 4
2 2 1 2
output
YES
Note

In the first sample, Daenerys can place the soldiers like in the figure below:

In the second sample, there is no way to place the soldiers in the plane since the second group soldier will always have a seat neighboring to someone from the first group.

In the third example Daenerys can place the first group on seats (1, 2, 7, 8), and the second group an all the remaining seats.

In the fourth example she can place the first two groups on seats (1, 2) and (7, 8), the third group on seats (3), and the fourth group on seats (5, 6).

题意:

有n排座位,有k组 每组有a[i]人,问能否使不同组的人都不相邻。

先将a[i]分为4 2 1,先放4的部分,再2,再1。

AC代码:

 #include<bits/stdc++.h>
using namespace std; int a[]; int main(){
ios::sync_with_stdio(false);
int n,k;
cin>>n>>k;
for(int i=;i<k;i++){
cin>>a[i];
}
int sum1=n;
int sum2=n*;
for(int i=;i<k;i++){
int d=min(sum1,a[i]/);
sum1-=d;
a[i]-=d*;
}
sum2+=sum1;
for(int i=;i<k;i++){
int d=min(sum2,a[i]/);
sum2-=d;
a[i]-=d*;
}
int temp=sum1+sum2;
for(int i=;i<k;i++){
temp-=a[i];
}
if(temp>=){
cout<<"YES"<<endl;
}
else{
cout<<"NO"<<endl;
}
return ;
}

最新文章

  1. @synchronized(self)的用法 小结
  2. 《javascript》高级程序设计——类型转换错误
  3. mysql分组合并GROUP_CONCAT
  4. 新建一个UI窗口-XproerUI(MFC)教程
  5. C语言中运算符的口决
  6. Ubuntu根目录下各文件夹的功能详细介绍
  7. Quality Center 使用IE8异常浏览器打开
  8. Mac OS X Yosemite 10.10 配置 Apache+PHP 教程注意事项
  9. $.get
  10. 用代码场景Spine人物
  11. 于Unity3D动态创建对象和创建Prefab三种方式的原型对象
  12. Asp.Net MVC5入门学习
  13. 一步一步学Vue(二)
  14. Android中使用ContentProvider进行跨进程方法调用
  15. 【死磕Java并发】----- 死磕 Java 并发精品合集
  16. Asp.net Core IdentityServer4 入门教程(一):概念解析
  17. PyCharm导入tensorflow包
  18. 跨语言调用Hangfire定时作业服务
  19. C++ 三/五法则
  20. iOS Code Sign On Copy

热门文章

  1. Linux将进程写入开机自启动
  2. 九度OJ 1067:n的阶乘 (数字特性)
  3. php soap使用示例
  4. div中p标签自动换行
  5. PAT 甲级 1065. A+B and C (64bit) (20) 【大数加法】
  6. logback 配置详解(上)
  7. win8+sdk8+vs2012+freeglut+glew开发opengl
  8. ubuntn14.04 使用 nvm创建多版本node环境
  9. 用js实现图片(小球)在屏幕上上下左右移动
  10. css3线性渐变兼容