CF152B.Steps
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
The first input line contains two integers n and m ( 1<=n,m<=109 ) — the yard's sizes. The second line contains integers xc and yc — the initial square's coordinates ( 1<=xc<=n,1<=yc<=m ).
The third line contains an integer k ( 1<=k<=104 ) — the number of vectors. Then follow k lines, each of them contains two integers dxi and dyi (|dx_{i}|,|dy_{i}|<=10^{9},|dx|+|dy|>=1) .
输入格式
Print the single number — the number of steps Vasya had made.
Please do not use the %lld specificator to read or write 64-bit integers in С++. It is preferred to use the cin, cout streams or the %I64d specificator.
输出格式
In the first sample Vasya is initially positioned at square (1,1) and makes 3 steps by the first vector (1,1) . So, he consecutively visits the squares (2,2),(3,3),(4,4) . Then he makes 0 steps by the second vector (1,1) . He makes 1 more step by the third vector (0,−2) and he ends up in square (4,2) . Overall, Vasya makes 4 steps.
In the second sample Vasya is initially positioned in square (1,2) and makes 0 steps by vector (−1,0) , as the square with coordinates (0,2) is located outside the yard.
输入输出样例
输入#1
4 5 1 1 3 1 1 1 1 0 -2
输出#1
4
输入#2
10 10 1 2 1 -1 0
输出#2
0
说明/提示
In the first sample Vasya is initially positioned at square (1,1) and makes 3 steps by the first vector (1,1) . So, he consecutively visits the squares (2,2),(3,3),(4,4) . Then he makes 0 steps by the second vector (1,1) . He makes 1 more step by the third vector (0,−2) and he ends up in square (4,2) . Overall, Vasya makes 4 steps.
In the second sample Vasya is initially positioned in square (1,2) and makes 0 steps by vector (−1,0) , as the square with coordinates (0,2) is located outside the yard.