結果

問題 No.1434 Make Maze
ユーザー titiatitia
提出日時 2021-03-19 23:28:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,644 ms / 2,000 ms
コード長 1,590 bytes
コンパイル時間 726 ms
コンパイル使用メモリ 13,056 KB
実行使用メモリ 18,816 KB
最終ジャッジ日時 2024-05-03 18:16:54
合計ジャッジ時間 12,876 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 28 ms
10,880 KB
testcase_02 AC 1,644 ms
18,688 KB
testcase_03 AC 1,624 ms
18,816 KB
testcase_04 AC 27 ms
10,880 KB
testcase_05 AC 26 ms
11,008 KB
testcase_06 AC 28 ms
11,008 KB
testcase_07 AC 29 ms
10,880 KB
testcase_08 AC 28 ms
11,008 KB
testcase_09 AC 28 ms
10,880 KB
testcase_10 AC 26 ms
10,880 KB
testcase_11 AC 26 ms
11,008 KB
testcase_12 AC 80 ms
11,136 KB
testcase_13 AC 28 ms
10,752 KB
testcase_14 AC 98 ms
11,008 KB
testcase_15 AC 507 ms
12,800 KB
testcase_16 AC 146 ms
11,392 KB
testcase_17 AC 64 ms
11,136 KB
testcase_18 AC 181 ms
11,520 KB
testcase_19 AC 979 ms
14,720 KB
testcase_20 AC 28 ms
11,392 KB
testcase_21 AC 32 ms
13,824 KB
testcase_22 AC 32 ms
12,416 KB
testcase_23 AC 29 ms
11,008 KB
testcase_24 AC 515 ms
13,696 KB
testcase_25 AC 1,239 ms
16,000 KB
testcase_26 AC 96 ms
11,136 KB
testcase_27 AC 428 ms
13,440 KB
testcase_28 AC 103 ms
11,392 KB
testcase_29 AC 41 ms
11,008 KB
testcase_30 AC 183 ms
11,648 KB
testcase_31 AC 171 ms
11,648 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