結果
問題 | No.1818 6 Operations |
ユーザー | tenten |
提出日時 | 2022-01-23 20:48:26 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,811 bytes |
コンパイル時間 | 2,536 ms |
コンパイル使用メモリ | 78,316 KB |
実行使用メモリ | 149,976 KB |
最終ジャッジ日時 | 2024-05-07 10:29:34 |
合計ジャッジ時間 | 15,259 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 54 ms
50,392 KB |
testcase_01 | WA | - |
testcase_02 | AC | 56 ms
50,364 KB |
testcase_03 | AC | 56 ms
50,280 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 53 ms
50,248 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
ソースコード
import java.io.*; import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); int m = sc.nextInt(); int nCount = 0; HashSet<Integer> nSet = new HashSet<>(); for (int i = 0; i < n; i++) { nSet.add(nCount); nCount += sc.nextInt() + 1; } int mCount = 0; HashSet<Integer> mSet = new HashSet<>(); for (int i = 0; i < m; i++) { mSet.add(mCount); mCount += sc.nextInt() + 1; } int[][] dp = new int[nCount+1][mCount+1]; for (int[] arr : dp) { Arrays.fill(arr, Integer.MAX_VALUE); } dp[0][0] = 0; for (int i = 0; i < nCount; i++) { for (int j = 0; j < mCount; j++) { if (nSet.contains(i) == mSet.contains(j)) { dp[i + 1][j + 1] = Math.min(dp[i + 1][j + 1], dp[i][j]); } dp[i + 1][j] = Math.min(dp[i + 1][j], dp[i][j] + 1); dp[i][j + 1] = Math.min(dp[i][j + 1], dp[i][j] + 1); } } System.out.println(dp[nCount][mCount]); } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public String next() throws Exception { if (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }