結果

問題 No.2855 Move on Grid
ユーザー detteiuudetteiuu
提出日時 2024-08-25 13:58:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 710 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 78,512 KB
最終ジャッジ日時 2024-08-25 13:58:54
合計ジャッジ時間 7,045 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 89 ms
76,892 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 71 ms
74,316 KB
testcase_08 WA -
testcase_09 AC 87 ms
76,804 KB
testcase_10 AC 136 ms
77,852 KB
testcase_11 AC 116 ms
78,012 KB
testcase_12 AC 112 ms
77,380 KB
testcase_13 AC 109 ms
77,816 KB
testcase_14 AC 140 ms
77,600 KB
testcase_15 AC 127 ms
77,884 KB
testcase_16 AC 133 ms
78,108 KB
testcase_17 AC 113 ms
77,980 KB
testcase_18 AC 116 ms
77,836 KB
testcase_19 AC 116 ms
77,768 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 147 ms
78,360 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, K = map(int, input().split())
A = [list(map(int, input().split())) for _ in range(N)]

def func(n):
    dp = [[0]*M for _ in range(N)]
    if A[0][0] < n:
        dp[0][0] = 1
    for i in range(N):
        for j in range(M):
            if i == 0 and j == 0:
                continue
            if i == 0:
                dp[i][j] = dp[i][j-1]+(A[i][j] < n)
            elif j == 0:
                dp[i][j] = dp[i-1][j]+(A[i][j] < n)
            else:
                dp[i][j] = min(dp[i][j-1], dp[i-1][j])+(A[i][j] < n)
    return dp[-1][-1]

left = 1
right = 10**9+1
while left+1 < right:
    mid = (left+right)//2
    if func(mid) <= K:
        left = mid
    else:
        right = mid

print(left)
0