跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F2388. Black-and-White Cube

    ID: 2394 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 4 上传者: 标签>组合数学构造数学算法思想进阶难度共享题库Codeforces英文题面题目来源题面语言

Black-and-White Cube

题目描述

A. Black-and-White Cube
time limit per test
0.5 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

You are given a cube of size k×k×k, which consists of unit cubes. Two unit cubes are considered neighbouring, if they have common face.

Your task is to paint each of k3 unit cubes one of two colours (black or white), so that the following conditions must be satisfied:

  • each white cube has exactly 2 neighbouring cubes of white color;
  • each black cube has exactly 2 neighbouring cubes of black color.
Input

The first line contains integer k (1≤k≤100), which is size of the cube.

Output

Print -1 if there is no solution. Otherwise, print the required painting of the cube consequently by layers. Print a k×k matrix in the first k lines, showing how the first layer of the cube should be painted. In the following k lines print a k×k matrix − the way the second layer should be painted. And so on to the last k-th layer. Note that orientation of the cube in the space does not matter.

Mark a white unit cube with symbol "w" and a black one with "b". Use the format of output data, given in the test samples. You may print extra empty lines, they will be ignored.

Examples
Input
1
Output
-1
Input
2
Output
bb
ww

bb
ww

题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 2015 题。保留原作者与原赛事署名。