結果

問題 No.2656 XOR Slimes
ユーザー ks2mks2m
提出日時 2024-03-01 22:01:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 921 ms / 2,000 ms
コード長 928 bytes
コンパイル時間 2,940 ms
コンパイル使用メモリ 77,620 KB
実行使用メモリ 250,088 KB
最終ジャッジ日時 2024-09-29 13:53:47
合計ジャッジ時間 48,674 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,260 KB
testcase_01 AC 130 ms
54,008 KB
testcase_02 AC 131 ms
53,988 KB
testcase_03 AC 129 ms
54,252 KB
testcase_04 AC 131 ms
54,260 KB
testcase_05 AC 131 ms
53,996 KB
testcase_06 AC 129 ms
53,724 KB
testcase_07 AC 116 ms
52,832 KB
testcase_08 AC 846 ms
249,524 KB
testcase_09 AC 853 ms
249,428 KB
testcase_10 AC 838 ms
249,628 KB
testcase_11 AC 842 ms
249,668 KB
testcase_12 AC 859 ms
249,544 KB
testcase_13 AC 869 ms
249,472 KB
testcase_14 AC 857 ms
249,432 KB
testcase_15 AC 874 ms
249,772 KB
testcase_16 AC 844 ms
249,760 KB
testcase_17 AC 852 ms
249,500 KB
testcase_18 AC 843 ms
249,792 KB
testcase_19 AC 816 ms
249,656 KB
testcase_20 AC 806 ms
249,832 KB
testcase_21 AC 850 ms
249,664 KB
testcase_22 AC 841 ms
249,548 KB
testcase_23 AC 841 ms
250,088 KB
testcase_24 AC 862 ms
249,868 KB
testcase_25 AC 879 ms
249,784 KB
testcase_26 AC 861 ms
249,744 KB
testcase_27 AC 833 ms
248,684 KB
testcase_28 AC 877 ms
249,524 KB
testcase_29 AC 869 ms
249,604 KB
testcase_30 AC 921 ms
249,996 KB
testcase_31 AC 857 ms
249,720 KB
testcase_32 AC 885 ms
249,816 KB
testcase_33 AC 871 ms
249,628 KB
testcase_34 AC 872 ms
249,756 KB
testcase_35 AC 867 ms
249,504 KB
testcase_36 AC 861 ms
249,756 KB
testcase_37 AC 850 ms
248,784 KB
testcase_38 AC 882 ms
249,720 KB
testcase_39 AC 872 ms
249,628 KB
testcase_40 AC 858 ms
249,700 KB
testcase_41 AC 864 ms
249,556 KB
testcase_42 AC 871 ms
249,692 KB
testcase_43 AC 867 ms
249,720 KB
testcase_44 AC 874 ms
249,804 KB
testcase_45 AC 881 ms
249,712 KB
testcase_46 AC 853 ms
249,440 KB
testcase_47 AC 836 ms
249,756 KB
testcase_48 AC 832 ms
249,580 KB
testcase_49 AC 829 ms
249,660 KB
testcase_50 AC 824 ms
249,568 KB
testcase_51 AC 829 ms
249,844 KB
testcase_52 AC 855 ms
249,836 KB
testcase_53 AC 878 ms
249,796 KB
testcase_54 AC 850 ms
249,840 KB
testcase_55 AC 863 ms
249,616 KB
testcase_56 AC 865 ms
249,896 KB
testcase_57 AC 905 ms
249,832 KB
testcase_58 AC 846 ms
249,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] x = new int[n];
		for (int i = 0; i < n; i++) {
			x[i] = sc.nextInt();
		}
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = sc.nextInt();
		}
		sc.close();

		int[] b = new int[n + 1];
		for (int i = 0; i < n; i++) {
			b[i + 1] = b[i] ^ a[i];
		}

		long[][] dp = new long[n][n];
		for (int i = 0; i < n; i++) {
			for (int j = i; j < n; j++) {
				dp[i][j] += x[j] - x[i];
				dp[i][j] += b[j + 1] ^ b[i];
			}
		}

		long inf = 1000000000000000000L;
		long[] dp2 = new long[n + 1];
		Arrays.fill(dp2, inf);
		dp2[0] = 0;
		for (int i = 1; i <= n; i++) {
			for (int j = 0; j < i; j++) {
				long val = dp2[j] + dp[j][i - 1];
				dp2[i] = Math.min(dp2[i], val);
			}
		}
		System.out.println(dp2[n]);
	}
}
0