CF1717C.Madoka and Formal Statement

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Given an array of integer a1,a2,,ana_1, a_2, \ldots, a_n . In one operation you can make ai:=ai+1a_i := a_i + 1 if i<ni < n and aiai+1a_i \leq a_{i + 1} , or i=ni = n and aia1a_i \leq a_1 .

You need to check whether the array a1,a2,,ana_1, a_2, \ldots, a_n can become equal to the array b1,b2,,bnb_1, b_2, \ldots, b_n in some number of operations (possibly, zero). Two arrays aa and bb of length nn are called equal if ai=bia_i = b_i for all integers ii from 11 to nn .

输入格式

The input consists of multiple test cases. The first line contains a single integer tt ( 1t41041 \le t \le 4 \cdot 10^4 ) — the number of test cases. Description of the test cases follows.

The first line of each test case contains a single integer nn ( 2n21052 \le n \le 2 \cdot 10^5 ) – the length of the array.

The second line of each test case contains nn integers a1,,ana_1, \ldots, a_n ( 1ai1091 \le a_i \le 10^9 ) – the elements of the array aa .

The third line of each test case contains nn integers b1,,bnb_1, \ldots, b_n ( 1bi1091 \le b_i \le 10^9 ) – the elements of the array bb .

It is guaranteed that the sum of nn over all test cases does not exceed 21052 \cdot 10^5 .

输出格式

For each test case, output "YES" if you can get the array bb , otherwise output "NO".

You may print each letter in any case (for example, "YES", "Yes", "yes", "yEs" will all be recognized as positive answer).

输入输出样例

  • 输入#1

    5
    3
    1 2 5
    1 2 5
    2
    2 2
    1 3
    4
    3 4 1 2
    6 4 2 5
    3
    2 4 1
    4 5 3
    5
    1 2 3 4 5
    6 5 6 7 6

    输出#1

    YES
    NO
    NO
    NO
    YES

说明/提示

In the first test case, the array aa is already equal to the array bb .

In the second test case, we can't get the array bb , because to do this we need to decrease a1a_1 .

In the fifth test case, we can apply operations in order to the elements with indices 4,3,3,2,2,2,1,1,1,14, 3, 3,2,2,2,1,1,1,1 , and then get the array [5,5,5,5,5][5,5,5,5,5] . After that, you can apply operations in order to elements with indices 5,4,4,3,15,4,4,3,1 and already get an array [6,5,6,7,6][6,5,6,7,6] .

首页