CF106D.Treasure Island

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Our brave travelers reached an island where pirates had buried treasure. However as the ship was about to moor, the captain found out that some rat ate a piece of the treasure map.

The treasure map can be represented as a rectangle n×mn×m in size. Each cell stands for an islands' square (the square's side length equals to a mile). Some cells stand for the sea and they are impenetrable. All other cells are penetrable (i.e. available) and some of them contain local sights. For example, the large tree on the hills or the cave in the rocks.

Besides, the map also has a set of kk instructions. Each instruction is in the following form:

"Walk nn miles in the yy direction"

The possible directions are: north, south, east, and west. If you follow these instructions carefully (you should fulfill all of them, one by one) then you should reach exactly the place where treasures are buried.

Unfortunately the captain doesn't know the place where to start fulfilling the instructions — as that very piece of the map was lost. But the captain very well remembers that the place contained some local sight. Besides, the captain knows that the whole way goes through the island's penetrable squares.

The captain wants to know which sights are worth checking. He asks you to help him with that.

输入格式

The first line contains two integers nn and mm ( 3<=n,m<=10003<=n,m<=1000 ).

Then follow nn lines containing mm integers each — the island map's description. "#" stands for the sea. It is guaranteed that all cells along the rectangle's perimeter are the sea. "." stands for a penetrable square without any sights and the sights are marked with uppercase Latin letters from "A" to "Z". Not all alphabet letters can be used. However, it is guaranteed that at least one of them is present on the map. All local sights are marked by different letters.

The next line contains number kk ( 1<=k<=1051<=k<=10^{5} ), after which kk lines follow. Each line describes an instruction. Each instruction possesses the form " dirdir lenlen ", where dirdir stands for the direction and lenlen stands for the length of the way to walk. dirdir can take values "N", "S", "W" and "E" for North, South, West and East correspondingly. At that, north is to the top, South is to the bottom, west is to the left and east is to the right. lenlen is an integer from 11 to 10001000 .

输出格式

Print all local sights that satisfy to the instructions as a string without any separators in the alphabetical order. If no sight fits, print "no solution" without the quotes.

输入输出样例

  • 输入#1

    6 10
    ##########
    #K#..#####
    #.#..##.##
    #..L.#...#
    ###D###A.#
    ##########
    4
    N 2
    S 1
    E 1
    W 2
    

    输出#1

    AD
  • 输入#2

    3 4
    ####
    #.A#
    ####
    2
    W 1
    N 2
    

    输出#2

    no solution
首页