eolymp
bolt
Попробуйте наш новый интерфейс для отправки задач
Задачи

Quick out of the Harbour

Quick out of the Harbour

Лимит времени 1 секунда
Лимит использования памяти 32 MiB

Captain Clearbeard decided to go to the harbour for a few days so his crew could inspect and repair the ship. Now, a few days later, the pirates are getting landsick (Pirates get landsick when they don't get enough of the ships' rocking motion. That's why pirates often try to simulate that motion by drinking rum.). Before all of the pirates become too sick to row the boat out of the harbour, captain Clearbeard decided to leave the harbour as quickly as possible.

Unfortunately the harbour isn't just a straight path to open sea. To protect the city from evil pirates, the entrance of the harbour is a kind of maze with drawbridges in it. Every bridge takes some time to open, so it could be faster to take a detour. Your task is to help captain Clearbeard and the fastest way out to open sea.

The pirates will row as fast as one minute per grid cell on the map. The ship can move only horizontally or vertically on the map. Making a 90 degree turn does not take any extra time.

Входные данные

The first line of the input contains a single number: the number of test cases to follow. Each test case has the following format:

  • One line with three integers, h, w (3 ≤ h; w ≤ 500), and d (0 ≤ d ≤ 50), the height and width of the map and the delay for opening a bridge.

  • h lines with w characters: the description of the map. The map is described using the following characters:

  • "S", the starting position of the ship.

  • ".", water.

  • "\#", land.

  • "@", a drawbridge.

Each harbour is completely surrounded with land, with exception of the single entrance.

Выходные данные

For every test case in the input, the output should contain one integer on a single line: the travelling time of the fastest route to open sea. There is always a route to open sea. Note that the open sea is not shown on the map, so you need to move outside of the map to reach open sea.

Пример

Входные данные #1
2
6 5 7
#####
#S..#
#@#.#
#...#
#@###
#.###
4 5 3
#####
#S#.#
#@..#
###@#
Выходные данные #1
16
11