PivotOJ

Nautilus

시간 제한: 2000ms메모리 제한: 512MB출처: BOI 2019BOJ 17184

문제

Nautilus is a secret submarine, sailing around the ocean and trying to remain hidden.

The ocean is modelled as R × C grid of cells, where “#” represents islands and “.” represents water. For example:

...##....
..#.##..#
..#....##
.##...#..
....#....

Every minute, Nautilus emits a radio signal that can reveal the direction the submarine is about to take. The direction is always one of the following: North (N), East (E), South (S), West (W), as shown on the figure above right.

Vytautas has constructed a radar that intercepts the periodic submarine signals. Over the last M minutes, the radar has collected M radio signals, represented as a sequence of M characters, for example “WS?EE??”. Some of the signals could not be decoded, these are marked as “?”.

Vytautas does not know the initial submarine location, but wants to use the ocean map in order to identify its current location. Given that Nautilus always stays in water cells on the map, help Vytautas calculate the number of distinct cells where Nautilus may be located at currently.

입력

The first line of the input contains three integers R, C, M.

The next R lines form an R × C grid of characters “#” and “.” representing the ocean map.

The last line of the input describes the signals intercepted by Vytautas — a string of M characters, all belonging to the set {N, E, S, W, ?}.

출력

Output a single integer: the number of possible distinct current positions of Nautilus.

예제

예제 1

입력
5 9 7
...##....
..#.##..#
..#....##
.##...#..
....#....
WS?EE??
출력
22
코드를 제출하려면 로그인하세요.