結果

問題 No.1434 Make Maze
ユーザー KudeKude
提出日時 2021-03-19 23:11:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 1,027 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 84,352 KB
最終ジャッジ日時 2024-11-24 21:40:21
合計ジャッジ時間 6,049 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 132 ms
84,352 KB
testcase_03 AC 132 ms
84,352 KB
testcase_04 AC 37 ms
52,352 KB
testcase_05 AC 37 ms
52,096 KB
testcase_06 AC 36 ms
51,968 KB
testcase_07 AC 37 ms
51,584 KB
testcase_08 AC 36 ms
52,224 KB
testcase_09 AC 36 ms
51,968 KB
testcase_10 AC 35 ms
52,736 KB
testcase_11 AC 36 ms
52,224 KB
testcase_12 AC 59 ms
72,192 KB
testcase_13 AC 38 ms
52,992 KB
testcase_14 AC 62 ms
70,400 KB
testcase_15 AC 82 ms
78,720 KB
testcase_16 AC 63 ms
74,240 KB
testcase_17 AC 65 ms
72,448 KB
testcase_18 AC 75 ms
77,696 KB
testcase_19 AC 97 ms
80,256 KB
testcase_20 AC 33 ms
51,968 KB
testcase_21 AC 33 ms
52,480 KB
testcase_22 AC 37 ms
51,840 KB
testcase_23 AC 41 ms
58,240 KB
testcase_24 AC 90 ms
79,360 KB
testcase_25 AC 99 ms
81,640 KB
testcase_26 AC 63 ms
73,344 KB
testcase_27 AC 91 ms
79,232 KB
testcase_28 AC 58 ms
74,112 KB
testcase_29 AC 52 ms
62,976 KB
testcase_30 AC 82 ms
77,440 KB
testcase_31 AC 78 ms
77,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w, x = map(int, input().split())
r = x - (h - 1) - (w - 1)
if r < 0 or r % 4:
    print(-1)
    exit()
r //= 4
s = [[(i | j) & 1 for j in range(w)] for i in range(h)]
for i in range(h):
    s[i][0] = 0
for j in range(w):
    s[h-1][j] = 0

di = [1, 0, -1, 0]
dj = [0, 1, 0, -1]
def flip(i, j):
    for k in range(4):
        ni = i + di[k]
        nj = j + dj[k]
        s[ni][nj] ^= 1
i = h - 2
j = w - 2
if j == 1:
    i -= 2

while r and i > 0 and j > 0:
    r -= 1
    flip(i, j)
    if j == 1:
        i -= 4
    else:
        i -= 2
    if i < 0:
        j -= 4
        i = h - 2
        if j == 1:
            i -= 2
for i in range(0, h, 2):
    for j in range(0, w, 2):
        ok = False
        for k in range(4):
            ni = i + di[k]
            nj = j + dj[k]
            if 0 <= ni < h and 0 <= nj < w and s[ni][nj] == 0:
                ok = True
                break
        if not ok:
            s[i][j - 1] = 0
if r != 0:
    print(-1)
    exit()
for si in s:
    print(''.join('.#'[x] for x in si))
0