CF1076F.Summer Practice Report

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Vova has taken his summer practice this year and now he should write a report on how it went.

Vova has already drawn all the tables and wrote down all the formulas. Moreover, he has already decided that the report will consist of exactly nn pages and the ii -th page will include xix_i tables and yiy_i formulas. The pages are numbered from 11 to nn .

Vova fills the pages one after another, he can't go filling page i+1i + 1 before finishing page ii and he can't skip pages.

However, if he draws strictly more than kk tables in a row or writes strictly more than kk formulas in a row then he will get bored. Vova wants to rearrange tables and formulas in each page in such a way that he doesn't get bored in the process. Vova can't move some table or some formula to another page.

Note that the count doesn't reset on the start of the new page. For example, if the page ends with 33 tables and the next page starts with 55 tables, then it's counted as 88 tables in a row.

Help Vova to determine if he can rearrange tables and formulas on each page in such a way that there is no more than kk tables in a row and no more than kk formulas in a row.

输入格式

The first line contains two integers nn and kk ( 1n31051 \le n \le 3 \cdot 10^5 , 1k1061 \le k \le 10^6 ).

The second line contains nn integers x1,x2,,xnx_1, x_2, \dots, x_n ( 1xi1061 \le x_i \le 10^6 ) — the number of tables on the ii -th page.

The third line contains nn integers y1,y2,,yny_1, y_2, \dots, y_n ( 1yi1061 \le y_i \le 10^6 ) — the number of formulas on the ii -th page.

输出格式

Print "YES" if Vova can rearrange tables and formulas on each page in such a way that there is no more than kk tables in a row and no more than kk formulas in a row.

Otherwise print "NO".

输入输出样例

  • 输入#1

    2 2
    5 5
    2 2
    

    输出#1

    YES
    
  • 输入#2

    2 2
    5 6
    2 2
    

    输出#2

    NO
    
  • 输入#3

    4 1
    4 1 10 1
    3 2 10 1
    

    输出#3

    YES
    

说明/提示

In the first example the only option to rearrange everything is the following (let table be 'T' and formula be 'F'):

  • page 11 : "TTFTTFT"
  • page 22 : "TFTTFTT"

That way all blocks of tables have length 22 .

In the second example there is no way to fit everything in such a way that there are no more than 22 tables in a row and 22 formulas in a row.

首页