結果

問題 No.1818 6 Operations
ユーザー tentententen
提出日時 2022-01-22 21:20:48
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,819 bytes
コンパイル時間 1,898 ms
コンパイル使用メモリ 78,096 KB
実行使用メモリ 137,144 KB
最終ジャッジ日時 2024-05-05 21:39:13
合計ジャッジ時間 13,334 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
36,896 KB
testcase_01 AC 48 ms
37,192 KB
testcase_02 AC 46 ms
37,000 KB
testcase_03 AC 45 ms
37,180 KB
testcase_04 WA -
testcase_05 AC 46 ms
36,676 KB
testcase_06 AC 45 ms
37,052 KB
testcase_07 AC 44 ms
36,856 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 258 ms
76,808 KB
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 -
権限があれば一括ダウンロードができます

ソースコード

diff #

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 - 1][mCount - 1]);
    }
    
}

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();
    }
}
0