Codeforces839B Game of the Rows

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 ≤ 100001 ≤ 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排座位,和m组人数信息,要求不同组的不能相邻坐

思路:贪心先4个排,多出来的4人坐拆成2人座和1人座,剩下的2个排,最后判断剩下

的人剩下的座位是否足够,维护人数时可以用优先队列维护

#include <iostream>
#include <cstdio>
#include <cstring>
#include <string>
#include <algorithm>
#include <cmath>
#include <map>
#include <set>
#include <stack>
#include <queue>
#include <vector>
#include <bitset>

using namespace std;

#define LL long long
const int INF = 0x3f3f3f3f;
#define mod 10000007
#define mem(a,b) memset(a,b,sizeof a)



int main()
{
    int n,m,a;
    while(~scanf("%d%d",&n,&m))
    {
        priority_queue<int>q;
        while(!q.empty())
            q.pop();
        for(int i=0; i<m; i++)
        {
            scanf("%d",&a);
            q.push(a);
        }
        int cnt=0;
        while(cnt<n&&!q.empty())
        {
            if(q.top()<4)
                break;
            int f=q.top();
            q.pop();
            if(f/4+cnt<=n)
            {
                cnt+=f/4;
                f%=4;
                if(f>0) q.push(f);
            }
            else
            {
                f-=4*(n-cnt);
                cnt=n;
                q.push(f);
            }
        }

        int x=2*n+n-cnt;
        int y=0;
        while(y<x&&!q.empty())
        {
            if(q.top()<2)
                break;
            int f=q.top();
            q.pop();
            if(f/2+y<=x)
            {
                y+=f/2;
                f%=2;
                if(f>0) q.push(f);
            }
            else
            {
                f-=2*(x-y);
                y=x;
                q.push(f);
            }
        }
        int ss=x-y+n-cnt;
        int xx=0;
        while(!q.empty())
        {
            xx+=q.top();
            q.pop();
        }
        if(xx<=ss)
            printf("YES\n");
        else
            printf("NO\n");
    }
    return 0;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值