307976: CF1445A. Array Rearrangment
Memory Limit:512 MB
Time Limit:1 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Array Rearrangment
题意翻译
有 $t$ 组询问,每组询问给定两个长度为 $n$ 的数列 $\{a_i\}_{i=1}^n,\{b_i\}_{i=1}^n$ 和一个整数 $x$,求是否能够重新对两个数列进行排列,使得 $\forall i\in[1,n],a_i+b_i\leqslant x$。 **数据范围:$1\leqslant t\leqslant 100,1\leqslant n\leqslant 50,1\leqslant x\leqslant 1000,1\leqslant a_i\leqslant x,1\leqslant b_i\leqslant x,a_i\leqslant a_{i+1},b_i\leqslant b_{i+1}$。**题目描述
You are given two arrays $ a $ and $ b $ , each consisting of $ n $ positive integers, and an integer $ x $ . Please determine if one can rearrange the elements of $ b $ so that $ a_i + b_i \leq x $ holds for each $ i $ ( $ 1 \le i \le n $ ).输入输出格式
输入格式
The first line of input contains one integer $ t $ ( $ 1 \leq t \leq 100 $ ) — the number of test cases. $ t $ blocks follow, each describing an individual test case. The first line of each test case contains two integers $ n $ and $ x $ ( $ 1 \leq n \leq 50 $ ; $ 1 \leq x \leq 1000 $ ) — the length of arrays $ a $ and $ b $ , and the parameter $ x $ , described in the problem statement. The second line of each test case contains $ n $ integers $ a_1, a_2, \ldots, a_n $ ( $ 1 \leq a_1 \le a_2 \le \dots \le a_n \leq x $ ) — the elements of array $ a $ in non-descending order. The third line of each test case contains $ n $ integers $ b_1, b_2, \ldots, b_n $ ( $ 1 \leq b_1 \le b_2 \le \dots \le b_n \leq x $ ) — the elements of array $ b $ in non-descending order. Test cases are separated by a blank line.
输出格式
For each test case print Yes if one can rearrange the corresponding array $ b $ so that $ a_i + b_i \leq x $ holds for each $ i $ ( $ 1 \le i \le n $ ) or No otherwise. Each character can be printed in any case.
输入输出样例
输入样例 #1
4
3 4
1 2 3
1 1 2
2 6
1 4
2 5
4 4
1 2 3 4
1 2 3 4
1 5
5
5
输出样例 #1
Yes
Yes
No
No