結果

問題 No.1434 Make Maze
ユーザー titiatitia
提出日時 2021-03-19 23:28:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 279 ms / 2,000 ms
コード長 1,590 bytes
コンパイル時間 408 ms
コンパイル使用メモリ 82,588 KB
実行使用メモリ 106,428 KB
最終ジャッジ日時 2024-11-24 21:41:24
合計ジャッジ時間 7,025 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,944 KB
testcase_01 AC 37 ms
53,724 KB
testcase_02 AC 279 ms
106,352 KB
testcase_03 AC 276 ms
106,428 KB
testcase_04 AC 36 ms
52,856 KB
testcase_05 AC 39 ms
53,132 KB
testcase_06 AC 39 ms
53,136 KB
testcase_07 AC 37 ms
53,380 KB
testcase_08 AC 35 ms
53,420 KB
testcase_09 AC 39 ms
53,072 KB
testcase_10 AC 36 ms
53,196 KB
testcase_11 AC 36 ms
53,152 KB
testcase_12 AC 79 ms
76,860 KB
testcase_13 AC 38 ms
53,340 KB
testcase_14 AC 79 ms
77,336 KB
testcase_15 AC 118 ms
82,740 KB
testcase_16 AC 87 ms
77,932 KB
testcase_17 AC 83 ms
76,928 KB
testcase_18 AC 93 ms
79,124 KB
testcase_19 AC 172 ms
89,764 KB
testcase_20 AC 37 ms
53,008 KB
testcase_21 AC 41 ms
55,892 KB
testcase_22 AC 39 ms
54,188 KB
testcase_23 AC 42 ms
59,652 KB
testcase_24 AC 138 ms
85,192 KB
testcase_25 AC 215 ms
94,408 KB
testcase_26 AC 86 ms
77,840 KB
testcase_27 AC 135 ms
84,256 KB
testcase_28 AC 88 ms
77,480 KB
testcase_29 AC 70 ms
73,672 KB
testcase_30 AC 93 ms
79,044 KB
testcase_31 AC 97 ms
78,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

H,W,X=map(int,input().split())

ANS=[["."]*W for i in range(H)]
k=H-1+W-1
if X<k or (X-k)%4!=0:
    print(-1)
    exit()



for i in range(H):
    for j in range(W):
        if i%2==1 and j%2==1:
            ANS[i][j]="#"

for i in range(H):
    ANS[i][0]=0

for j in range(W):
    ANS[-1][j]=0

NOWX=1
NOWY=0
while k<X:
    if NOWX+2<H and NOWY+1<W:
        k+=4
        ANS[NOWX][NOWY]="."
        for i,j in [(NOWX-1,NOWY+1),(NOWX-1,NOWY+2),(NOWX,NOWY+2),(NOWX+1,NOWY+1),(NOWX+1,NOWY+2)]:
                    ANS[i][j]=0
        NOWY+=2


    elif NOWY+1==W:
        NOWX+=4
        NOWY=0

    else:
        break

if k<X and H%4==3:
    NOWX=H-1
    NOWY=3
    while k<X:
        if NOWY+1<W:
            k+=4
            ANS[NOWX][NOWY]="."
            for i,j in [(NOWX-1,NOWY-1),(NOWX-1,NOWY+1),(NOWX-2,NOWY-1),(NOWX-2,NOWY),(NOWX-2,NOWY+1)]:
                        ANS[i][j]=0
            NOWY+=4
        else:
            break

if k!=X:
    print(-1)
    exit()

for i in range(H):
    for j in range(W):
        if ANS[i][j]==".":
            flag=0
            for z,w in [(i-1,j),(i+1,j),(i,j-1),(i,j+1)]:
                if 0<=z<H and 0<=w<W and ANS[z][w]==0:
                    ANS[i][j]="#"


for j in range(W):
    if j%2==0 and ANS[H-3][j]==".":
        ANS[H-2][j]="."

for j in range(W):
    for i in range(H-2,-1,-1):
        if ANS[i][j]=="." and ANS[i+1][j]=="#":
            ANS[i][j]="#"

for i in range(H):
    for j in range(W):
        if ANS[i][j]==0:
            ANS[i][j]="."

for ans in ANS:
    print("".join(ans))
0