CF1066A.Vova and Train
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Vova plans to go to the conference by train. Initially, the train is at the point 1 and the destination point of the path is the point L . The speed of the train is 1 length unit per minute (i.e. at the first minute the train is at the point 1 , at the second minute — at the point 2 and so on).
There are lanterns on the path. They are placed at the points with coordinates divisible by v (i.e. the first lantern is at the point v , the second is at the point 2v and so on).
There is also exactly one standing train which occupies all the points from l to r inclusive.
Vova can see the lantern at the point p if p is divisible by v and there is no standing train at this position ( p∈[l;r] ). Thus, if the point with the lantern is one of the points covered by the standing train, Vova can't see this lantern.
Your problem is to say the number of lanterns Vova will see during the path. Vova plans to go to t different conferences, so you should answer t independent queries.
输入格式
The first line of the input contains one integer t ( 1≤t≤104 ) — the number of queries.
Then t lines follow. The i -th line contains four integers Li,vi,li,ri ( 1≤L,v≤109 , 1≤l≤r≤L ) — destination point of the i -th path, the period of the lantern appearance and the segment occupied by the standing train.
输出格式
Print t lines. The i -th line should contain one integer — the answer for the i -th query.
输入输出样例
输入#1
4 10 2 3 7 100 51 51 51 1234 1 100 199 1000000000 1 1 1000000000
输出#1
3 0 1134 0
说明/提示
For the first example query, the answer is 3 . There are lanterns at positions 2 , 4 , 6 , 8 and 10 , but Vova didn't see the lanterns at positions 4 and 6 because of the standing train.
For the second example query, the answer is 0 because the only lantern is at the point 51 and there is also a standing train at this point.
For the third example query, the answer is 1134 because there are 1234 lanterns, but Vova didn't see the lanterns from the position 100 to the position 199 inclusive.
For the fourth example query, the answer is 0 because the standing train covers the whole path.