博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Codeforces 839B Game of the Rows【贪心】
阅读量:7045 次
发布时间:2019-06-28

本文共 2604 字,大约阅读时间需要 8 分钟。

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

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

题目链接:

分析:贪心可做,具体看代码(有空补上题解)

1 #include
2 #include
3 using namespace std; 4 int n,m,c[9],i,j,x,a[11111]; 5 int main(){ 6 scanf("%d%d",&n,&m); 7 c[2]=n*2; 8 c[4]=n; 9 for(i=1;i<=m;i++)scanf("%d",&x),a[x]++;10 for(i=10000;i;i--)while(a[i]--){11 for(j=4;j;j--)if(c[j]){12 c[j]--;13 int t=min(i,j);14 a[i-t]++;15 if(j-t-1>0)c[j-t-1]++;16 break;17 }18 if(!j){19 puts("NO");20 return 0;21 }22 }23 puts("YES");24 }

 

转载于:https://www.cnblogs.com/ECJTUACM-873284962/p/7352295.html

你可能感兴趣的文章
一次数据库hang住的分析过程
查看>>
ArcGIS使用字体文件制作符号库!
查看>>
Cocoa框架类之间的继承关系
查看>>
Windows安全认证是如何进行的?
查看>>
dll文件
查看>>
C# 多线程详解 Part.04(Lock、Monitor、生产与消费)
查看>>
HTTP协议之chunk介绍
查看>>
误区1:数据是可靠的
查看>>
根据IP找到计算机名字(小技巧)
查看>>
遍历jquery的对象
查看>>
system app 下面的apk 修改后不需要重新签名
查看>>
openoj的一个小比赛(F题解题报告)poj3978(dp+素数筛选)
查看>>
【转载】动态代理DynamicProxy 介绍
查看>>
读写cookie的方法
查看>>
淘宝技术发展(Oracle/支付宝/旺旺)
查看>>
分布式版本控制工具 Mercurial 使用教程
查看>>
使用Keil MDK运行第一个STM32程序
查看>>
同时寻找最大数和最小数的最优算法
查看>>
【Visual C++】游戏开发笔记十四 游戏画面绘图(四) 华丽的CImage类
查看>>
GDI+在VS2008 编译不过的解决方法
查看>>