CF152B.Steps

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

The first input line contains two integers nn and mm ( 1<=n,m<=1091<=n,m<=10^{9} ) — the yard's sizes. The second line contains integers xcx_{c} and ycy_{c} — the initial square's coordinates ( 1<=xc<=n,1<=yc<=m1<=x_{c}<=n,1<=y_{c}<=m ).

The third line contains an integer kk ( 1<=k<=1041<=k<=10^{4} ) — the number of vectors. Then follow kk lines, each of them contains two integers dxidx_{i} and dyidy_{i} (|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)(1,1) and makes 33 steps by the first vector (1,1)(1,1) . So, he consecutively visits the squares (2,2),(3,3),(4,4)(2,2),(3,3),(4,4) . Then he makes 00 steps by the second vector (1,1)(1,1) . He makes 11 more step by the third vector (0,2)(0,-2) and he ends up in square (4,2)(4,2) . Overall, Vasya makes 44 steps.

In the second sample Vasya is initially positioned in square (1,2)(1,2) and makes 00 steps by vector (1,0)(-1,0) , as the square with coordinates (0,2)(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)(1,1) and makes 33 steps by the first vector (1,1)(1,1) . So, he consecutively visits the squares (2,2),(3,3),(4,4)(2,2),(3,3),(4,4) . Then he makes 00 steps by the second vector (1,1)(1,1) . He makes 11 more step by the third vector (0,2)(0,-2) and he ends up in square (4,2)(4,2) . Overall, Vasya makes 44 steps.

In the second sample Vasya is initially positioned in square (1,2)(1,2) and makes 00 steps by vector (1,0)(-1,0) , as the square with coordinates (0,2)(0,2) is located outside the yard.

首页