結果

問題 No.971 いたずらっ子
ユーザー konchanksukonchanksu
提出日時 2020-04-27 01:16:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,088 ms / 2,000 ms
コード長 895 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 266,496 KB
最終ジャッジ日時 2024-11-07 11:45:17
合計ジャッジ時間 10,465 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,078 ms
266,496 KB
testcase_01 AC 1,088 ms
266,496 KB
testcase_02 AC 808 ms
216,704 KB
testcase_03 AC 953 ms
253,952 KB
testcase_04 AC 857 ms
249,088 KB
testcase_05 AC 935 ms
254,080 KB
testcase_06 AC 738 ms
210,176 KB
testcase_07 AC 75 ms
70,144 KB
testcase_08 AC 289 ms
120,448 KB
testcase_09 AC 260 ms
123,392 KB
testcase_10 AC 82 ms
66,048 KB
testcase_11 AC 42 ms
51,968 KB
testcase_12 AC 42 ms
51,840 KB
testcase_13 AC 57 ms
60,416 KB
testcase_14 AC 93 ms
75,008 KB
testcase_15 AC 57 ms
60,160 KB
testcase_16 AC 56 ms
61,696 KB
testcase_17 AC 41 ms
51,712 KB
testcase_18 AC 41 ms
52,224 KB
testcase_19 AC 42 ms
51,968 KB
testcase_20 AC 42 ms
51,712 KB
testcase_21 AC 43 ms
52,096 KB
testcase_22 AC 43 ms
52,224 KB
testcase_23 AC 42 ms
52,096 KB
testcase_24 AC 42 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W = map(int, input().split())
A = ['o'.join(input()).split('o') for i in range(H)]
dp = [[0 for i in range(W)] for j in range(H)]

for i in range(1, H + W - 1):
    for j in range(i + 1):
        if i - j >= W or j >= H:
            continue
            
        if j == 0:
            if A[j][i - j] == 'k':
                dp[j][i - j] = dp[j][i - j - 1] + i - j + 1
            else:
                dp[j][i - j] = dp[j][i - j - 1] + 1
                
        elif j == i:
            if A[j][i - j] == 'k':
                dp[j][i - j] = dp[j - 1][i - j] + j + 1
            else:
                dp[j][i - j] = dp[j - 1][i - j] + 1
        
        else:
            if A[j][i - j] == 'k':
                dp[j][i - j] = min(dp[j][i - j - 1], dp[j - 1][i - j]) + i + 1
            else:
                dp[j][i - j] = min(dp[j][i - j - 1], dp[j - 1][i - j]) + 1

print(dp[H - 1][W - 1])
0