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

    题意就是:飞机有N排,每排八个座位 12  3456   78,要求不同的队伍不能相邻.

    这题神坑,wa了不下于8次,思路就是,先把有四个的先把四个联排的占了,然后考虑两个的,具体看代码.

     1 #include<bits/stdc++.h>
     2 using namespace std;
     3 const int MAXN = 1e3 + 5;
     4 int a[MAXN];
     5 int main()
     6 {
     7     int n, k;
     8     cin >> n >> k;
     9     for(int i = 0; i < k; i++) {
    10         scanf("%d", a + i);
    11     }
    12     int cnt1 = n, cnt2 = 2 * n;
    13     for(int i = 0; i < k; i++) {
    14         int d = min(a[i] / 4, cnt1);
    15         cnt1 -= d;
    16         a[i] -= 4 * d;
    17     }
    18     cnt2 += cnt1;
    19     for(int i = 0; i < k; i++) {
    20         int d = min(a[i] / 2, cnt2);
    21         cnt2 -= d;
    22         a[i] -= 2 * d;
    23     }
    24     int c = cnt2 + cnt1;
    25     for(int i = 0; i < k; i++) {
    26         c -= a[i];
    27     }
    28     printf("%s
    ", c >= 0 ? "YES" : "NO");
    29     return 0;
    30 }
  • 相关阅读:
    【磁盘/文件系统】第五篇:CentOS7.x__btrfs文件系统详解
    【python】-- IO多路复用(select、poll、epoll)介绍及实现
    【python】-- 事件驱动介绍、阻塞IO, 非阻塞IO, 同步IO,异步IO介绍
    【python】-- 协程介绍及基本示例、协程遇到IO操作自动切换、协程(gevent)并发爬网页
    【python】-- 多进程的基本语法 、进程间数据交互与共享、进程锁和进程池的使用
    【python】-- 队列(Queue)、生产者消费者模型
    【python】-- 信号量(Semaphore)、event(红绿灯例子)
    【python】-- GIL锁、线程锁(互斥锁)、递归锁(RLock)
    【python】-- 继承式多线程、守护线程
    【python】-- 进程与线程
  • 原文地址:https://www.cnblogs.com/zllwxm123/p/7354868.html
Copyright © 2020-2023  润新知