結果

問題 No.2328 Build Walls
ユーザー tetorapentagontetorapentagon
提出日時 2023-05-28 15:24:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 849 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 81,920 KB
最終ジャッジ日時 2024-06-08 07:41:18
合計ジャッジ時間 4,845 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 AC 45 ms
51,840 KB
testcase_02 AC 41 ms
52,352 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 WA -
testcase_05 AC 40 ms
51,584 KB
testcase_06 AC 41 ms
51,968 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 40 ms
51,968 KB
testcase_11 AC 40 ms
52,096 KB
testcase_12 AC 41 ms
51,840 KB
testcase_13 AC 99 ms
78,848 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 55 ms
65,408 KB
testcase_20 WA -
testcase_21 AC 88 ms
76,800 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 111 ms
80,512 KB
testcase_29 WA -
testcase_30 AC 129 ms
80,640 KB
testcase_31 AC 125 ms
81,152 KB
testcase_32 WA -
testcase_33 AC 176 ms
81,920 KB
testcase_34 AC 128 ms
80,768 KB
testcase_35 WA -
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W = map(int, input().split())
A = [[0 for i in range(W)]] +  [list(map(int, input().split())) for i in range(H-2)] + [[0 for i in range(W)]]
d = [-1, 0, 1]
ans = 10**10
for i in range(1, H-1):
    now = i
    cunt = 0
    now_2 = i
    ok = True
    if A[now][0] != -1:
        cunt += A[now][0]
    else:
        continue
    for j in range(1, W):
        wall_now = 10**10
        for k in d:
            if now + k <= 0 or now + k >= H-1:
                continue   
            if A[now+k][j] == -1:
                continue   
            if wall_now > A[now+k][j]:
                wall_now = A[now+k][j]
                now_2 = i+k
        if wall_now == 10**10:
            ok = False
            break
        now = now_2    
        cunt += wall_now
    if ok:
        ans = min(ans, cunt)

if ans == 10**10:
	print(-1)
else:
	print(ans)
0