結果

問題 No.1434 Make Maze
ユーザー titiatitia
提出日時 2021-03-19 23:28:46
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 1,651 ms / 2,000 ms
コード長 1,590 bytes
コンパイル時間 978 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 18,688 KB
最終ジャッジ日時 2024-11-24 21:44:44
合計ジャッジ時間 13,493 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 27 ms
11,008 KB
testcase_02 AC 1,593 ms
18,688 KB
testcase_03 AC 1,651 ms
18,432 KB
testcase_04 AC 28 ms
10,880 KB
testcase_05 AC 28 ms
10,880 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 27 ms
11,008 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 28 ms
10,880 KB
testcase_11 AC 28 ms
10,880 KB
testcase_12 AC 79 ms
11,008 KB
testcase_13 AC 28 ms
11,008 KB
testcase_14 AC 99 ms
11,008 KB
testcase_15 AC 512 ms
12,800 KB
testcase_16 AC 143 ms
11,136 KB
testcase_17 AC 62 ms
11,136 KB
testcase_18 AC 170 ms
11,520 KB
testcase_19 AC 978 ms
14,976 KB
testcase_20 AC 27 ms
11,648 KB
testcase_21 AC 31 ms
13,568 KB
testcase_22 AC 30 ms
12,416 KB
testcase_23 AC 27 ms
10,752 KB
testcase_24 AC 516 ms
13,824 KB
testcase_25 AC 1,213 ms
16,000 KB
testcase_26 AC 94 ms
11,264 KB
testcase_27 AC 437 ms
13,312 KB
testcase_28 AC 103 ms
11,008 KB
testcase_29 AC 39 ms
11,008 KB
testcase_30 AC 173 ms
11,392 KB
testcase_31 AC 170 ms
11,776 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