結果
問題 | No.422 文字列変更 (Hard) |
ユーザー | 37zigen |
提出日時 | 2016-09-10 17:11:40 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,571 bytes |
コンパイル時間 | 3,967 ms |
コンパイル使用メモリ | 79,868 KB |
実行使用メモリ | 102,052 KB |
最終ジャッジ日時 | 2024-11-17 06:50:05 |
合計ジャッジ時間 | 11,114 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
ソースコード
package N4xx; import java.util.*; public class N422 { public static void main(String[] args) { new N422().solver(); } int N, M; String S, T; int[][][] dp; void solver() { Scanner sc = new Scanner(System.in); N = sc.nextInt(); M = sc.nextInt(); S = sc.next(); T = sc.next(); dp = new int[1300][1300][3]; for (int i = 0; i < dp.length; i++) { for (int j = 0; j < dp[i].length; j++) { for (int k = 0; k < dp[i][j].length; j++) { dp[i][j][i] = -1; } } } System.out.println(dpdp(0, 0, 0)); System.out.println(RS + "\n" + RT); } String RS = ""; String RT = ""; int dpdp(int s, int t, int st) { if (s == N && t == M) return 0; int ret = dp[s][t][st]; if (ret != -1) return ret; ret = 10101010; if (s < N && t < M) ret = Math.min(ret, dpdp(s + 1, t + 1, 0) + ((S.charAt(s) == T.charAt(t) ? 0 : 5))); if (s < N) ret = Math.min(ret, st == 2 ? 2 : 9 + dpdp(s + 1, t, 2)); if (t < M) ret = Math.min(ret, st == 1 ? 2 : 9 + dpdp(s, t + 1, 1)); return dp[s][t][st] = ret; } void dfs(int s, int t, int st) { if (s == N && t == M) return; int ret = dp[s][t][st]; if (s < N && t < M && ret == (dpdp(s + 1, t + 1, 0) + S.charAt(s) == T.charAt(t) ? 0 : 5)) { RS += S.charAt(s); RT += T.charAt(t); dfs(s + 1, t + 1, 0); } else if (s < N && ret == (dpdp(s + 1, t, 2) + st == 2 ? 2 : 9)) { RS += S.charAt(s); RT = "-"; dfs(s + 1, t, 2); } else if (t < M && ret == (dpdp(s, t + 2, 1) + st == 1 ? 2 : 9)) { RS += "-"; RT += T.charAt(t); dfs(s, t + 1, 1); } } }