「CF400C」Inna and Huge Candy Matrix

2014年3月6日2,7240

Inna and Dima decided to surprise Sereja. They brought a really huge candy matrix, it’s big even for Sereja! Let’s number the rows of the giant matrix from 1 to n from top to bottom and the columns — from 1 to m, from left to right. We’ll represent the cell on the intersection of the i-th row and j-th column as (i, j). Just as is expected, some cells of the giant candy matrix contain candies. Overall the matrix has p candies: the k-th candy is at cell (xk, yk).

The time moved closer to dinner and Inna was already going to eat p of her favourite sweets from the matrix, when suddenly Sereja (for the reason he didn’t share with anyone) rotated the matrix x times clockwise by 90 degrees. Then he performed the horizontal rotate of the matrix y times. And then he rotated the matrix z times counterclockwise by 90 degrees. The figure below shows how the rotates of the matrix looks like.

 

 

Inna got really upset, but Duma suddenly understood two things: the candies didn’t get damaged and he remembered which cells contained Inna’s favourite sweets before Sereja’s strange actions. Help guys to find the new coordinates in the candy matrix after the transformation Sereja made! 

Input

The first line of the input contains fix integers nmxyzp (1 ≤ n, m ≤ 109; 0 ≤ x, y, z ≤ 109; 1 ≤ p ≤ 105).

Each of the following p lines contains two integers xkyk (1 ≤ xk ≤ n; 1 ≤ yk ≤ m) — the initial coordinates of the k-th candy. Two candies can lie on the same cell.

Output

For each of the p candies, print on a single line its space-separated new coordinates.

Sample test(s)
input

output

Note

Just for clarity. Horizontal rotating is like a mirroring of the matrix. For matrix:

看了眼数据范围。非常激动地写了个矩阵乘法。其实把xyz取模就。。。

 

 

avatar
  Subscribe  
提醒