CF1822A.TubeTube Feed

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Mushroom Filippov cooked himself a meal and while having his lunch, he decided to watch a video on TubeTube. He can not spend more than tt seconds for lunch, so he asks you for help with the selection of video.

The TubeTube feed is a list of nn videos, indexed from 11 to nn . The ii -th video lasts aia_i seconds and has an entertainment value bib_i . Initially, the feed is opened on the first video, and Mushroom can skip to the next video in 11 second (if the next video exists). Mushroom can skip videos any number of times (including zero).

Help Mushroom choose one video that he can open and watch in tt seconds. If there are several of them, he wants to choose the most entertaining one. Print the index of any appropriate video, or 1-1 if there is no such.

输入格式

The first line of the input data contains a single integer qq ( 1q10001 \le q \le 1000 ) — the number of test cases in the test.

The description of the test cases follows.

The first line of a test case contains two integers nn and tt ( 1n501 \le n \le 50 , 1t2001 \le t \le 200 ) — the number of videos in the feed and seconds for lunch, respectively.

The second line of a test case contains nn integers a1,a2,a3,,ana_1, a_2, a_3, \dots, a_n ( 1ai1001 \le a_i \le 100 ) — durations of videos.

The third line of a test case contains nn integers b1,b2,b3,,bnb_1, b_2, b_3, \dots, b_n ( 1bi1001 \le b_i \le 100 ) — entertainment values of videos.

输出格式

Output qq integers, each of which is the answer to the corresponding test case. As an answer, output the index of the most entertaining video that Mushroom will have time to watch. If there are several answers, you are allowed to output any of them. Output 1-1 , if there is no video he can watch during his lunch break.

输入输出样例

  • 输入#1

    5
    5 9
    1 5 7 6 6
    3 4 7 1 9
    4 4
    4 3 3 2
    1 2 3 4
    5 7
    5 5 5 5 5
    2 1 3 9 7
    4 33
    54 71 69 96
    42 24 99 1
    2 179
    55 66
    77 88

    输出#1

    3
    2
    3
    -1
    2
首页