結果

問題 No.225 文字列変更(medium)
ユーザー H3PO4H3PO4
提出日時 2023-06-17 20:31:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,010 ms / 5,000 ms
コード長 448 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 51,384 KB
最終ジャッジ日時 2024-06-25 10:22:49
合計ジャッジ時間 18,913 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 724 ms
46,824 KB
testcase_01 AC 869 ms
48,700 KB
testcase_02 AC 539 ms
44,476 KB
testcase_03 AC 539 ms
44,344 KB
testcase_04 AC 549 ms
44,344 KB
testcase_05 AC 542 ms
44,476 KB
testcase_06 AC 545 ms
44,220 KB
testcase_07 AC 543 ms
44,344 KB
testcase_08 AC 537 ms
44,348 KB
testcase_09 AC 544 ms
44,088 KB
testcase_10 AC 538 ms
44,352 KB
testcase_11 AC 540 ms
44,348 KB
testcase_12 AC 967 ms
50,788 KB
testcase_13 AC 1,006 ms
51,256 KB
testcase_14 AC 1,010 ms
51,384 KB
testcase_15 AC 958 ms
50,756 KB
testcase_16 AC 987 ms
50,968 KB
testcase_17 AC 958 ms
50,812 KB
testcase_18 AC 957 ms
50,492 KB
testcase_19 AC 991 ms
51,004 KB
testcase_20 AC 962 ms
50,564 KB
testcase_21 AC 989 ms
50,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N, M = map(int, input().split())
S = np.array(list(input()))
T = np.array(list(input()))

min1 = np.frompyfunc(lambda x, y: min(x, y) + 1, 2, 1)

eq = (S[:, None] == T[None, :])
dp = np.zeros((N + 1, M + 1), dtype=int)
dp[0] = np.arange(M + 1)
dp[:, 0] = np.arange(N + 1)
for i in range(N):
    dp[i + 1, 1:] = np.minimum(dp[i, 1:], dp[i, :-1] - eq[i])
    dp[i + 1] = min1.accumulate(dp[i + 1], dtype=np.int64)
print(dp[N, M])
0