結果

問題 No.866 レベルKの正方形
ユーザー convexineqconvexineq
提出日時 2021-04-05 10:50:36
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 652 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 111,872 KB
最終ジャッジ日時 2024-06-09 17:45:04
合計ジャッジ時間 55,766 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
61,056 KB
testcase_01 AC 51 ms
61,568 KB
testcase_02 AC 49 ms
61,312 KB
testcase_03 AC 50 ms
61,184 KB
testcase_04 AC 44 ms
60,928 KB
testcase_05 AC 47 ms
61,312 KB
testcase_06 AC 46 ms
61,440 KB
testcase_07 AC 44 ms
61,824 KB
testcase_08 AC 5,082 ms
111,104 KB
testcase_09 AC 4,946 ms
110,848 KB
testcase_10 AC 4,432 ms
110,976 KB
testcase_11 AC 5,268 ms
111,488 KB
testcase_12 AC 4,706 ms
111,872 KB
testcase_13 AC 5,389 ms
110,816 KB
testcase_14 RE -
testcase_15 AC 4,807 ms
111,104 KB
testcase_16 AC 5,054 ms
111,488 KB
testcase_17 AC 4,754 ms
111,360 KB
testcase_18 AC 4,651 ms
111,104 KB
testcase_19 RE -
testcase_20 RE -
testcase_21 AC 2,476 ms
111,104 KB
testcase_22 AC 40 ms
52,480 KB
testcase_23 AC 36 ms
51,968 KB
testcase_24 AC 61 ms
68,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def clear(lst):
    for r in lst:
        for j in range(S):
            r[j] = 0

def a2i(x): return ord(x) - 97

def score(lst,i,j):
    lst = sorted(lst)
    if K != 26: return lst[K] - lst[K-1]
    else: return min(i,j) - lst[K]

h,w,K = map(int,input().split())
b = [list(map(a2i,input())) for _ in range(h)]
S = 26
dp = [[0]*S for _ in range(w)]
ndp = [[0]*S for _ in range(w)]
ans = 0
for i in range(h):
    clear(ndp)
    for j in range(w):
        for k in range(S):
            ndp[j][k] = min(ndp[j-1][k],dp[j][k],dp[j-1][k])+1
        ndp[j][b[i][j]] = 0
    dp,ndp = ndp,dp
    for j in range(w):
        ans += score(dp[j],i,j)
print(ans)
0