最近太zz了,老是忘记带脑子。。。
补的以前的cf,发现脑子不好使。。。
 
 
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).

题意:主要的就是不同的军队不能挨着坐。

所以能把4个位置坐满的话就先坐满,然后考虑2个位置的。

对于4个人来说就是坐在中间的4个位置,对于3个人来说也是坐在中间,但是可以有一种操作,把3个人分成2个人和1个人,

然后是考虑2个人和1个人的,都是坐在两边的位置或者中间坐一个2个人坐一个1个人,或者中间坐2个1个人的。

最近太zz了,一开始想的太麻烦了,忘记了还有比较大小这种操作了。。。

代码:

 #include<bits/stdc++.h>
using namespace std;
int a[];
int main(){
int n,k;
while(~scanf("%d%d",&n,&k)){
for(int i=;i<k;i++)
scanf("%d",&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 tmp=sum2+sum1;
for(int i=;i<k;i++)
tmp-=a[i];
if(tmp>=)printf("YES\n");
else printf("NO\n");
}
return ;
}

最新文章

  1. JVM内存格局总结
  2. UINavigationBar 总结
  3. 使用plsql连接别人的oracle(转)
  4. 使用Polly让程序有Retry的机制
  5. 纯css实现扁平化360卫士logo demo
  6. 深入理解Oracle的imp/exp 和各版本之间的规则
  7. [转] stat命令输出结果中, Access,Modify,Change的含义
  8. css3中动画animation的应用
  9. Javascript 中创建自定义对象的方法(设计模式)
  10. PHP实现快速排序算法
  11. jsoup抓取数据
  12. VS2013编译FileZilla0.9.44
  13. SQL注入攻击三部曲之进阶篇
  14. Springboot的static和templates区别
  15. Asp.NetMVC利用LigerUI搭建一个简单的后台管理详解(函登录验证)
  16. Python3从零开始爬取今日头条的新闻【二、首页热点新闻抓取】
  17. RV ItemDecoration 分割线 简介 MD
  18. Linux 安装iostat命令
  19. ifstream 和 ofstream 用法。
  20. Paper Reading - Mind’s Eye: A Recurrent Visual Representation for Image Caption Generation ( CVPR 2015 )

热门文章

  1. C++11新语法糖之尾置返回类型
  2. 了解数组中的队列方法,DOM中节点的一些操作
  3. Linux第八讲随笔 -tar / 系统启动流程
  4. ProjectA: 多元非线性回归
  5. String源码图
  6. ELK开机启动 service文件内容
  7. 在一个终端后台运行的进程在新的终端中使用job不会被发现
  8. Webpack 2 视频教程 009 - 配置 ESLint 实现代码规范自动测试 (上)
  9. jquery中this和event.target的区别
  10. 用元类和__getattribute__改变类属性的读取方式