CF1932G.Moving Platforms

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

There is a game where you need to move through a labyrinth. The labyrinth consists of nn platforms, connected by mm passages.

Each platform is at some level lil_i , an integer number from 00 to H1H - 1 . In a single step, if you are currently on platform ii , you can stay on it, or move to another platform jj . To move to platform jj they have to be connected by the passage, and their levels have to be the same, namely li=ljl_i = l_j .

After each step, the levels of all platforms change. The new level of platform ii is calculated as li=(li+si)modHl'_i = (l_i + s_i) \bmod H , for all ii .

You start on platform 11 . Find the minimum number of steps you need to get to platform nn .

输入格式

The first line of input contains a single integer tt ( 1t1041 \le t \le 10^4 ) — the number of test cases. Then the descriptions of the test cases follow.

The first line of each test case contains three integers nn , mm , and HH ( 2n1052 \le n \le 10^5 , 1m1051 \le m \le 10^5 , 1H1091 \le H \le 10^9 ).

The second line contains nn integers lil_i , the initial level of each platform ( 0liH10 \le l_i \le H-1 ).

The third line contains nn integers sis_i , the change of level for each platform ( 0siH10 \le s_i \le H-1 ).

Next mm lines contain a description of the passages. Each passage is described as a pair of integers — the platforms, connected by the passage. There is at most one passage connecting each pair of platforms, and there is no passage connecting a platform to itself.

The sum of nn for all tests does not exceed 10510^5 , the sum of mm for all tests does not exceed 10510^5 .

输出格式

For each test case, print a single integer, the minimum number of steps needed to get from platform 11 to platform nn .

If it is impossible to get to platform nn , print 1-1 .

输入输出样例

  • 输入#1

    3
    3 3 10
    1 9 4
    2 3 0
    1 2
    3 2
    1 3
    2 1 10
    1 2
    4 6
    1 2
    8 7 25
    22 14 5 3 10 14 11 1
    9 5 4 10 7 16 18 18
    2 8
    6 3
    3 5
    7 5
    2 6
    1 4
    4 7

    输出#1

    6
    -1
    52

说明/提示

This is how levels of the platforms change, and what actions we need to perform in the first example.

Platform 1Platform 2Platform 3ActionStep 1194Stay on the platform 1Step 2324Stay on the platform 1Step 3554Move to the platform 2Step 4784Stay on the platform 2Step 5914Stay on the platform 2Step 6144Move to the platform 3

首页