CF1601B.Frog Traveler

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Frog Gorf is traveling through Swamp kingdom. Unfortunately, after a poor jump, he fell into a well of nn meters depth. Now Gorf is on the bottom of the well and has a long way up.

The surface of the well's walls vary in quality: somewhere they are slippery, but somewhere have convenient ledges. In other words, if Gorf is on xx meters below ground level, then in one jump he can go up on any integer distance from 00 to axa_x meters inclusive. (Note that Gorf can't jump down, only up).

Unfortunately, Gorf has to take a break after each jump (including jump on 00 meters). And after jumping up to position xx meters below ground level, he'll slip exactly bxb_x meters down while resting.

Calculate the minimum number of jumps Gorf needs to reach ground level.

输入格式

The first line contains a single integer nn ( 1n3000001 \le n \le 300\,000 ) — the depth of the well.

The second line contains nn integers a1,a2,,ana_1, a_2, \ldots, a_n ( 0aii0 \le a_i \le i ), where aia_i is the maximum height Gorf can jump from ii meters below ground level.

The third line contains nn integers b1,b2,,bnb_1, b_2, \ldots, b_n ( 0bini0 \le b_i \le n - i ), where bib_i is the distance Gorf will slip down if he takes a break on ii meters below ground level.

输出格式

If Gorf can't reach ground level, print 1-1 . Otherwise, firstly print integer kk — the minimum possible number of jumps.

Then print the sequence d1,d2,,dkd_1,\,d_2,\,\ldots,\,d_k where djd_j is the depth Gorf'll reach after the jj -th jump, but before he'll slip down during the break. Ground level is equal to 00 .

If there are multiple answers, print any of them.

输入输出样例

  • 输入#1

    3
    0 2 2
    1 1 0

    输出#1

    2
    1 0
  • 输入#2

    2
    1 1
    1 0

    输出#2

    -1
  • 输入#3

    10
    0 1 2 3 5 5 6 7 8 5
    9 8 7 1 5 4 3 2 0 0

    输出#3

    3
    9 4 0

说明/提示

In the first example, Gorf is on the bottom of the well and jump to the height 11 meter below ground level. After that he slip down by meter and stays on height 22 meters below ground level. Now, from here, he can reach ground level in one jump.

In the second example, Gorf can jump to one meter below ground level, but will slip down back to the bottom of the well. That's why he can't reach ground level.

In the third example, Gorf can reach ground level only from the height 55 meters below the ground level. And Gorf can reach this height using a series of jumps 10994510 \Rightarrow 9 \dashrightarrow 9 \Rightarrow 4 \dashrightarrow 5 where \Rightarrow is the jump and \dashrightarrow is slipping during breaks.

首页