308317: CF1499A. Domino on Windowsill

Memory Limit:256 MB Time Limit:1 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Domino on Windowsill

题意翻译

有一块木板,上面有 $2 \times n$ 个方格,$2$ 行 $n$ 列。 对于每一种方格,都有两种颜色:白色和黑色。 对于这两行,给定 $k1$ 和 $k2$ 第一行的前 $k1$ 个方格和第二行的前 $k2$ 个方格都是白色方格,剩下的方格都是黑色的。 给定 $w$ 个白色多米诺牌和 $b$ 个黑色多米诺牌,每个多米诺骨牌的大小是 $1 \times 2$,每一个白色多米诺骨牌必须放在白色方格中,每一个黑色多米诺骨牌必须放在黑色方格中。 如果能完成,输出 `YES` ,否则输出 `NO`。

题目描述

You have a board represented as a grid with $ 2 \times n $ cells. The first $ k_1 $ cells on the first row and first $ k_2 $ cells on the second row are colored in white. All other cells are colored in black. You have $ w $ white dominoes ( $ 2 \times 1 $ tiles, both cells are colored in white) and $ b $ black dominoes ( $ 2 \times 1 $ tiles, both cells are colored in black). You can place a white domino on the board if both board's cells are white and not occupied by any other domino. In the same way, you can place a black domino if both cells are black and not occupied by any other domino. Can you place all $ w + b $ dominoes on the board if you can place dominoes both horizontally and vertically?

输入输出格式

输入格式


The first line contains a single integer $ t $ ( $ 1 \le t \le 3000 $ ) — the number of test cases. The first line of each test case contains three integers $ n $ , $ k_1 $ and $ k_2 $ ( $ 1 \le n \le 1000 $ ; $ 0 \le k_1, k_2 \le n $ ). The second line of each test case contains two integers $ w $ and $ b $ ( $ 0 \le w, b \le n $ ).

输出格式


For each test case, print YES if it's possible to place all $ w + b $ dominoes on the board and NO, otherwise. You may print every letter in any case you want (so, for example, the strings yEs, yes, Yes and YES are all recognized as positive answer).

输入输出样例

输入样例 #1

5
1 0 1
1 0
1 1 1
0 0
3 0 0
1 3
4 3 1
2 2
5 4 3
3 1

输出样例 #1

NO
YES
NO
YES
YES

说明

In the first test case, $ n = 1 $ , $ k_1 = 0 $ and $ k_2 = 1 $ . It means that $ 2 \times 1 $ board has black cell $ (1, 1) $ and white cell $ (2, 1) $ . So, you can't place any white domino, since there is only one white cell. In the second test case, the board of the same size $ 2 \times 1 $ , but both cell are white. Since $ w = 0 $ and $ b = 0 $ , so you can place $ 0 + 0 = 0 $ dominoes on the board. In the third test case, board $ 2 \times 3 $ , but fully colored in black (since $ k_1 = k_2 = 0 $ ), so you can't place any white domino. In the fourth test case, cells $ (1, 1) $ , $ (1, 2) $ , $ (1, 3) $ , and $ (2, 1) $ are white and other cells are black. You can place $ 2 $ white dominoes at positions $ ((1, 1), (2, 1)) $ and $ ((1, 2), (1, 3)) $ and $ 2 $ black dominoes at positions $ ((1, 4), (2, 4)) $ $ ((2, 2), (2, 3)) $ .

Input

题意翻译

有一块木板,上面有 $2 \times n$ 个方格,$2$ 行 $n$ 列。 对于每一种方格,都有两种颜色:白色和黑色。 对于这两行,给定 $k1$ 和 $k2$ 第一行的前 $k1$ 个方格和第二行的前 $k2$ 个方格都是白色方格,剩下的方格都是黑色的。 给定 $w$ 个白色多米诺牌和 $b$ 个黑色多米诺牌,每个多米诺骨牌的大小是 $1 \times 2$,每一个白色多米诺骨牌必须放在白色方格中,每一个黑色多米诺骨牌必须放在黑色方格中。 如果能完成,输出 `YES` ,否则输出 `NO`。

加入题单

上一题 下一题 算法标签: