結果

問題 No.971 いたずらっ子
ユーザー konchanksukonchanksu
提出日時 2020-04-27 01:15:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 897 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 149,888 KB
最終ジャッジ日時 2024-11-19 05:43:19
合計ジャッジ時間 31,368 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 AC 74 ms
12,160 KB
testcase_08 AC 1,685 ms
61,312 KB
testcase_09 AC 1,656 ms
59,520 KB
testcase_10 AC 431 ms
12,160 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 392 ms
10,752 KB
testcase_14 AC 321 ms
11,136 KB
testcase_15 AC 416 ms
10,752 KB
testcase_16 AC 36 ms
10,752 KB
testcase_17 AC 30 ms
10,752 KB
testcase_18 AC 30 ms
10,752 KB
testcase_19 AC 30 ms
10,880 KB
testcase_20 AC 30 ms
10,752 KB
testcase_21 AC 30 ms
10,752 KB
testcase_22 AC 30 ms
10,880 KB
testcase_23 AC 29 ms
10,880 KB
testcase_24 AC 29 ms
141,440 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