3020.Crossword

Time Limit: 1s Memory Limit: 256MB

Vasya trains to compose crossword puzzles. He can only compose crosswords of a very simple type so far. All of them consist of exactly six words; the words can be read only from top to bottom vertically and from the left to the right horizontally. The words are arranged in the form of a rectangular "eight" or infinity sign, not necessarily symmetrical.

The top-left corner of the crossword coincides with the top-left corner of the rectangle. The same thing is correct for the right-bottom corners. The crossword can't degrade, i.e. it always has exactly four blank areas, two of which are surrounded by letters. Look into the output for the samples for clarification.

Help Vasya - compose a crossword of the described type using the given six words. It is allowed to use the words in any order.

Input Format(From the terminal/stdin)

Six lines contain the given words. Every word consists of no more than 30 and no less than 3 uppercase Latin letters.

Output Format(To the terminal/stdout)

If it is impossible to solve the problem, print Impossible. Otherwise, print the sought crossword. All the empty squares should be marked as dots.

If there can be several solutions to that problem, print the lexicographically minimum one. I.e. the solution where the first line is less than the first line of other solutions should be printed. If the two lines are equal, compare the second lines and so on. The lexicographical comparison of lines is realized by the \lt operator in the modern programming languages.

Sample Input 1

Copy
NOD
BAA
YARD
AIRWAY
NEWTON
BURN
   \n
   \n
    \n
      \n
      \n
    \n

Sample Output 1

Copy
BAA...
U.I...
R.R...
NEWTON
..A..O
..YARD
      \n
      \n
      \n
      \n
      \n
      \n

Sample Input 2

Copy
AAA
AAA
AAAAA
AAA
AAA
AAAAA
   \n
   \n
     \n
   \n
   \n
     \n

Sample Output 2

Copy
AAA..
A.A..
AAAAA
..A.A
..AAA
     \n
     \n
     \n
     \n
     \n

Sample Input 3

Copy
PTC
JYNYFDSGI
ZGPPC
IXEJNDOP
JJFS
SSXXQOFGJUZ
   \n
         \n
     \n
        \n
    \n
           \n

Sample Output 3

Copy
JJFS....
Y..S....
N..X....
Y..X....
F..Q....
D..O....
S..F....
G..G....
IXEJNDOP
...U...T
...ZGPPC
        \n
        \n
        \n
        \n
        \n
        \n
        \n
        \n
        \n
        \n
        \n

Submit

请先 登录

© 2025 FAQs