CF1082A.Vasya and Book

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Vasya is reading a e-book. The file of the book consists of nn pages, numbered from 11 to nn . The screen is currently displaying the contents of page xx , and Vasya wants to read the page yy . There are two buttons on the book which allow Vasya to scroll dd pages forwards or backwards (but he cannot scroll outside the book). For example, if the book consists of 1010 pages, and d=3d = 3 , then from the first page Vasya can scroll to the first or to the fourth page by pressing one of the buttons; from the second page — to the first or to the fifth; from the sixth page — to the third or to the ninth; from the eighth — to the fifth or to the tenth.

Help Vasya to calculate the minimum number of times he needs to press a button to move to page yy .

输入格式

The first line contains one integer tt ( 1t1031 \le t \le 10^3 ) — the number of testcases.

Each testcase is denoted by a line containing four integers nn , xx , yy , dd ( 1n,d1091\le n, d \le 10^9 , 1x,yn1 \le x, y \le n ) — the number of pages, the starting page, the desired page, and the number of pages scrolled by pressing one button, respectively.

输出格式

Print one line for each test.

If Vasya can move from page xx to page yy , print the minimum number of times he needs to press a button to do it. Otherwise print 1-1 .

输入输出样例

  • 输入#1

    3
    10 4 5 2
    5 1 3 4
    20 4 19 3
    

    输出#1

    4
    -1
    5
    

说明/提示

In the first test case the optimal sequence is: 421354 \rightarrow 2 \rightarrow 1 \rightarrow 3 \rightarrow 5 .

In the second test case it is possible to get to pages 11 and 55 .

In the third test case the optimal sequence is: 47101316194 \rightarrow 7 \rightarrow 10 \rightarrow 13 \rightarrow 16 \rightarrow 19 .

首页