ACS - A concrete simulation
You are given a matrix M of type 1234x5678. It is initially filled with integers 1...1234x5678 in row major order. Your task is to process a list of commands manipulating M. There are 4 types of commands:
- "R x y" swap the x-th and y-th row of M;
- "C x y" swap the x-th and y-th column of M;
- "Q x y" write out M(x,y);
- "W z" write out x and y where z=M(x,y).
Input
A list of valid commands. Input terminated by EOF.
Output
For each "Q x y" write out one line with the current value of M(x,y), for each "W z" write out one line with the value of x and y (interpreted as above) separated by a space.
Input: R 1 2 Q 1 1 Q 2 1 W 1 W 5679 C 1 2 Q 1 1 Q 2 1 W 1 W 5679 Output: 5679 1 2 1 1 1 5680 2 2 2 1 2
hide comments
Bumbler:
2014-04-14 11:40:12
TLE with FAST I/O. and works fine without it . Please lemme know the reason behind this .
|
|
Anurag yadav:
2014-02-11 17:13:58
try this
|
|
shashank:
2014-01-23 20:24:10
Finally done .. after 4 WA's ..
|
|
BLANKRK:
2014-01-20 09:49:44
NICE!!! |
|
cegprakash:
2013-12-20 19:30:10
Nice problem! |
|
BACK:
2011-09-20 22:35:35
is no of test case is greater than 1000000.
|
|
BACK:
2011-09-20 22:35:35
my soln is correct but i m getting wa....help someone... |
Added by: | czylabsonasa |
Date: | 2005-06-10 |
Time limit: | 7s |
Source limit: | 7777B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All |
Resource: | Folklore |