#P4668. [BalticOI 2011 Day1] Treasures and Vikings

[BalticOI 2011 Day1] Treasures and Vikings

题目描述

You have a treasure map that is arranged into a N×MN \times M grid. A grid square may be either sea or part of an island. In addition, the map shows the treasure and an enemy Viking ship that occupies one (sea) square. Finally, for convenience you have also drawn your own position.

Now you must set up a fixed route to get the treasure. The route must start at your position, end at the treasure, and consist of a sequence of moves. In each move, you can go only to an (horizontally or vertically) adjacent square that is not part of an island. But beware: The Viking ship might follow you, using the same kind of moves! After each of your moves according to your route, the Viking ship may move or not. Your move and the Vikings’ reaction together is called a round.

After every round, the following checks are made:

  • If you are in line with the Viking ship (you are in the same vertical or horizontal line as the Viking ship with only sea between the Viking ship and you), you are dead.
  • If you aren’t dead and at the treasure-spot, you get the treasure.

Write a program that decides whether it is possible to set up a fixed route in advance such that you can get the treasure by following this route and will not get killed by the Vikings – no matter how the Viking ship moves.

输入格式

The first line of input contains two integers NN and MM, the dimensions of the map. Each of the following NN lines contain MM characters. Each character describes a square in the map, and is either . (sea), I (part of an island), V (the Viking ship), Y (your position), or T (the treasure). Each of V, Y, and T will occur exactly once.

输出格式

The only line of the output must contain the string YES, if it is possible to set up a route to get the treasure, or NO otherwise.

题目大意

你有一张藏宝图,藏宝图可视为 N×MN×M 的网格。每个格子可能是你的船、贼船、海、陆地或藏宝点。你只有一条船,整张图只有一条贼船。你和贼船都只能在海域移动。藏宝点在海中。

你与贼船交替移动,每一回合,你移动一次,接着贼船移动一次。每次移动,你可以移动到上下左右四个相邻格子中的一格,也可以不移动。贼船的移动同理,贼船也可以不移动。你先移动。

每一回合结束后,如果你和贼船在同一行或同一列,并且你和贼船之间没有陆地,你就挂了;在你没挂的情况下,如果你位于藏宝点,你就拿到了宝藏。
请问:是否有一条安全的路径,使得无论贼船怎么跑你都能或者拿到宝藏。

Translated by @Planet6174

5 7
Y.....V
..I....
..IIIII
.......
...T...
YES
5 7
Y....V.
..I....
..IIIII
.......
...T...
NO
2 3
.YT
VII
NO

提示

Sample Explanation 1

The route is:go down for three times,go right for three times too,go down at last.

数据范围

对于 50%50\% 的数据,1N,M2001 \le N,M \le 200

对于所有数据,1N,M7001 \le N,M \le 700