시간 제한메모리 제한제출정답맞힌 사람정답 비율
5 초 512 MB4113828.571%

문제

Guarding a bank during Christmas night can get very boring. That’s why Barry decided to go skating around the parking lot for a bit. However the parking lot isn’t empty as the other security guards have their cars parked there. So Barry decides to push their cars out of the parking lot. He notices that their cars are parked facing either North, South, East or West. Since the parking lot is frozen, pushing a car will make it slide until it has left the parking lot or hit another car. Cars can only be pushed in the direction which they are facing. Not wanting to crash the cars, Barry enlists your help to find out what order he has to push the cars so as to clear the parking lot.

입력

The first line contains two integers N and M (1 ≤ N, M ≤ 2000) representing the number of rows and columns of the parking lot. The next N lines each contain M characters representing the parking lot itself, where ‘.’ represents an empty spot, while ‘N’, ‘S’, ‘E’ and ‘W’ each represent a car (facing North, South, East or West, respectively).

출력

Output the order in which the cars have to be pushed so as to clear the parking lot without crashes. Output each car in the form (r, c), where r and c are the car’s coordinates on the parking lot (where (0, 0) is the top leftmost spot and (N − 1, M − 1) is the bottom rightmost spot).

You can assume there will always be at least one valid solution.

예제 입력 1

5 5
.....
.E.S.
.....
.....
.N.E.

예제 출력 1

(4,3)
(1,3)
(1,1)
(4,1)

The only car that isn’t initially blocked by another car is the one at (4, 3). After that’s pushed out to the right side of the parking lot, then the car above it (at (1, 3)) can be pushed, and then the one at (1, 1), and finally the car at (4, 1), clearing the parking lot.

예제 입력 2

4 3
...
.N.
.S.
...

예제 출력 2

(1,1)
(2,1)

Either car could be pushed first to clear the parking lot, so this output is acceptable (as would the output with the lines outputted in reverse order).