A1331.[COCI-2007_2008-contest2]#5 PRVA

提高+/省选-

COCI

通过率:0%

时间限制:1.00s

内存限制:128MB

题目描述

Little Ivica solves crossword puzzles every day. In case you haven't seen one, a crossword puzzle starts on a grid of R×C squares, each of which is either empty or blocked. The player's task is to write words in consecutive empty squares vertically (top down) or horizontally (left to right).
Ivica's sister has a strange habit of looking at crosswords Ivica has finished solving, and finding the lexicographically smallest word in it. She only considers words at least 2 characters long.
Write a program that, given a crossword puzzle, finds that word.

输入格式

The first line contains two integers R and C (2 ≤ R, C ≤ 20), the number of rows and columns in the crossword.
Each of the following R lines contains a string of C characters. Each of those characters is either a lowercase letter of the English alphabet, or the character '#' representing a blocked square.
The input will be such that a solution will always exist.

输出格式

Output the lexicographically smallest word in the crossword.

输入输出样例

  • 输入#1

    4 4 
    luka 
    o#a# 
    kula 
    i#a# 

    输出#1

    kala
  • 输入#2

    4 4 
    luka 
    o#a# 
    kula 
    i#as

    输出#2

    as
  • 输入#3

    4 5 
    adaca 
    da##b 
    abb#b 
    abbac

    输出#3

    abb

说明/提示

首页