結果

問題 No.1434 Make Maze
ユーザー tyawanmusityawanmusi
提出日時 2021-01-10 15:09:37
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 1,489 bytes
コンパイル時間 114 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 18,816 KB
最終ジャッジ日時 2024-05-01 05:13:16
合計ジャッジ時間 4,961 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
11,136 KB
testcase_01 AC 29 ms
11,136 KB
testcase_02 AC 60 ms
18,816 KB
testcase_03 AC 60 ms
18,816 KB
testcase_04 AC 29 ms
11,008 KB
testcase_05 AC 29 ms
11,008 KB
testcase_06 AC 30 ms
11,136 KB
testcase_07 AC 29 ms
11,008 KB
testcase_08 AC 29 ms
11,008 KB
testcase_09 AC 30 ms
11,008 KB
testcase_10 AC 30 ms
11,136 KB
testcase_11 AC 30 ms
11,008 KB
testcase_12 AC 30 ms
11,264 KB
testcase_13 AC 30 ms
11,008 KB
testcase_14 AC 31 ms
11,264 KB
testcase_15 AC 38 ms
12,928 KB
testcase_16 AC 31 ms
11,520 KB
testcase_17 AC 31 ms
11,264 KB
testcase_18 AC 33 ms
11,776 KB
testcase_19 AC 46 ms
14,976 KB
testcase_20 RE -
testcase_21 AC 29 ms
11,008 KB
testcase_22 AC 29 ms
11,008 KB
testcase_23 AC 30 ms
11,008 KB
testcase_24 AC 42 ms
13,824 KB
testcase_25 AC 50 ms
16,000 KB
testcase_26 AC 32 ms
11,264 KB
testcase_27 AC 65 ms
13,440 KB
testcase_28 AC 30 ms
11,392 KB
testcase_29 AC 30 ms
11,008 KB
testcase_30 AC 43 ms
11,904 KB
testcase_31 AC 33 ms
11,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve1(h, w, x):
  if (x-(h-1)-(w-1))%4 != 0:
    return ["-1"]
  if not (h-1)+(w-1) <= x <= ((h//2+1)*(w//2+1)-1)*2:
    return ["-1"]
  ans = [["#"]*w for i in range(h)]
  for i in range(0, h, 2):
    ans[i] = ["."]*w
  for i in range(1, h, 4):
    ans[i][w-1] = "."
  x -= (h-1)+(w-1)
  for i in range(3, h, 4):
    y = min(x//2, w-1)
    ans[i][(w-1)-y] = "."
    x -= y*2
  return ans

def solve2(h, w, x):
  if (x-(h-1)-(w-1))%4 != 0:
    return ["-1"]
  if not (h-1)+(w-1) <= x <= ((h//2+1)*(w//2+1)-2)*2:
    return ["-1"]
  ans = [["#"]*w for i in range(h)]

  if (h-3)+(2*(w//2+1)-2)*2 <= x:
    ans[0][0] = ans[0][w-1] ="."
    for j in range(2, w-4, 4):
      ans[0][j] = ans[0][j+1] = ans[0][j+2] = "."
    for j in range(0, w, 2):
      ans[1][j] = "."
    for j in range(0, w+1, 4):
      ans[2][j] = ans[2][j+1] = ans[2][j+2] = "."
    x -= (h-3)+(2*(w//2+1)-2)*2
  else:
    ans[0] = ["."]*w
    ans[1][w-1] = "."
    ans[2] = ["."]*w
    x -= (h-1)+(w-1)

  for i in range(4, h, 2):
    ans[i] = ["."]*w
  for i in range(3, h, 4):
    ans[i][w-1] = "."

  for i in range(5, h, 4):
    y = min(x//2, w-1)
    ans[i][(w-1)-y] = "."
    x -= y*2
  return ans


h, w, x = map(int, input().split())
if h%4 == 3:
  if w%4 == 3:
    ans = solve2(h, w, x)
    for i in ans:
      print("".join(i))
  else:
    ans = solve1(w, h, x)
    for i in range(h):
      print("".join([ans[j][i] for j in range(w)]))
else:
  ans = solve1(h, w, x)
  for i in ans:
    print("".join(i))
0