結果

問題 No.2855 Move on Grid
ユーザー tassei903tassei903
提出日時 2024-08-25 13:42:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 966 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 80,800 KB
最終ジャッジ日時 2024-08-25 13:42:56
合計ジャッジ時間 8,618 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 112 ms
77,104 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 82 ms
76,604 KB
testcase_08 WA -
testcase_09 AC 92 ms
76,968 KB
testcase_10 AC 193 ms
79,032 KB
testcase_11 AC 165 ms
79,060 KB
testcase_12 AC 164 ms
79,112 KB
testcase_13 AC 167 ms
79,056 KB
testcase_14 AC 204 ms
79,104 KB
testcase_15 AC 140 ms
79,196 KB
testcase_16 AC 196 ms
79,380 KB
testcase_17 AC 170 ms
79,064 KB
testcase_18 AC 166 ms
79,256 KB
testcase_19 AC 173 ms
78,812 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 201 ms
79,884 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
n,m,k = na()
a = [na() for i in range(n)]

ok = 0
ng = 10 ** 9 + 1

while (ng - ok) > 1:
    mid = (ok + ng) // 2
    dp = [[10 ** 18] * m for i in range(n)]
    if a[0][0] >= mid:
        dp[0][0] = 0
    else:
        dp[0][0] = 1
    
    for i in range(n):
        for j in range(m):
            if i == 0 and j == 0:
                continue
            if i:
                dp[i][j] = min(dp[i][j], dp[i - 1][j] + (a[i][j] < mid))
            if j:
                dp[i][j] = min(dp[i][j], dp[i][j - 1] + (a[i][j] < mid))
    if dp[n - 1][m - 1] <= k:
        ok = mid
    else:
        ng = mid

print(ok)
0