#P12549. [UOI 2025] Gift for Anton

[UOI 2025] Gift for Anton

题目描述

Anton wants to receive as a gift a rectangular table of size n×mn\times m filled with the numbers 0, 1, 2, 3, or 4.

Anton will be happy if there is no other "0" next to each "0", exactly one other "1" next to each "1", exactly two other "2"s next to each "2", exactly three other "3"s next to each "3", and exactly four other "4"s next to each "4" (i.e., all neighbors of "4" must also be "4").

One cell is considered to be next to another if they share a side.

You need to come up with a table that can be gifted to Anton so that he will be happy.

Below is an example of a table that will make Anton happy with n=4,m=6n=4, m=6.

输入格式

A single line contains two numbers n,mn, m (1n,m2001 \leq n, m \leq 200) --- the dimensions of the table.

It can be shown that a solution always exists.

输出格式

Output a table with nn rows and mm columns --- a gift for Anton.

4 6
1 1 2 2 2 1
0 2 2 0 2 1
1 2 0 2 2 0
1 2 2 2 1 1

提示

  • (1010 points): n=1n = 1;
  • (1010 points): n=2n = 2;
  • (1010 points): n=3n = 3;
  • (1010 points): n=m=4n = m = 4;
  • (1010 points): n=m=30n = m = 30;
  • (55 points): n=30,m=31n = 30, m = 31;
  • (55 points): n=30,m=32n = 30, m = 32;
  • (1010 points): n=m=31n = m = 31;
  • (55 points): n=31,m=32n = 31, m = 32;
  • (1010 points): n=m=32n = m = 32;
  • (1515 points): no additional restrictions.