結果

問題 No.2656 XOR Slimes
ユーザー parukiparuki
提出日時 2024-03-02 22:23:12
言語 JavaScript
(node v21.7.1)
結果
AC  
実行時間 391 ms / 2,000 ms
コード長 867 bytes
コンパイル時間 49 ms
コンパイル使用メモリ 6,820 KB
実行使用メモリ 45,420 KB
最終ジャッジ日時 2024-09-29 16:27:14
合計ジャッジ時間 17,106 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
41,076 KB
testcase_01 AC 62 ms
39,168 KB
testcase_02 AC 63 ms
39,040 KB
testcase_03 AC 63 ms
39,168 KB
testcase_04 AC 63 ms
39,040 KB
testcase_05 AC 62 ms
39,040 KB
testcase_06 AC 62 ms
39,424 KB
testcase_07 AC 61 ms
39,040 KB
testcase_08 AC 391 ms
45,056 KB
testcase_09 AC 273 ms
45,356 KB
testcase_10 AC 279 ms
45,224 KB
testcase_11 AC 277 ms
45,096 KB
testcase_12 AC 274 ms
45,096 KB
testcase_13 AC 276 ms
45,100 KB
testcase_14 AC 275 ms
45,100 KB
testcase_15 AC 273 ms
45,104 KB
testcase_16 AC 278 ms
45,100 KB
testcase_17 AC 280 ms
45,100 KB
testcase_18 AC 275 ms
45,104 KB
testcase_19 AC 277 ms
45,104 KB
testcase_20 AC 281 ms
44,976 KB
testcase_21 AC 279 ms
45,100 KB
testcase_22 AC 275 ms
45,084 KB
testcase_23 AC 276 ms
45,080 KB
testcase_24 AC 275 ms
45,076 KB
testcase_25 AC 273 ms
45,208 KB
testcase_26 AC 270 ms
45,080 KB
testcase_27 AC 276 ms
45,076 KB
testcase_28 AC 274 ms
45,080 KB
testcase_29 AC 270 ms
45,092 KB
testcase_30 AC 272 ms
45,088 KB
testcase_31 AC 276 ms
45,348 KB
testcase_32 AC 272 ms
45,092 KB
testcase_33 AC 268 ms
45,092 KB
testcase_34 AC 269 ms
45,092 KB
testcase_35 AC 273 ms
44,964 KB
testcase_36 AC 270 ms
45,376 KB
testcase_37 AC 273 ms
45,120 KB
testcase_38 AC 274 ms
45,120 KB
testcase_39 AC 273 ms
45,120 KB
testcase_40 AC 272 ms
45,120 KB
testcase_41 AC 275 ms
44,996 KB
testcase_42 AC 271 ms
45,120 KB
testcase_43 AC 274 ms
45,168 KB
testcase_44 AC 274 ms
45,420 KB
testcase_45 AC 274 ms
45,168 KB
testcase_46 AC 274 ms
45,160 KB
testcase_47 AC 270 ms
45,168 KB
testcase_48 AC 267 ms
45,288 KB
testcase_49 AC 270 ms
45,040 KB
testcase_50 AC 280 ms
45,280 KB
testcase_51 AC 280 ms
45,160 KB
testcase_52 AC 278 ms
45,156 KB
testcase_53 AC 279 ms
45,284 KB
testcase_54 AC 283 ms
45,284 KB
testcase_55 AC 283 ms
45,156 KB
testcase_56 AC 283 ms
45,408 KB
testcase_57 AC 282 ms
45,412 KB
testcase_58 AC 277 ms
45,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

Main(require("fs").readFileSync("/dev/stdin", "utf8"));

function Main(input) {
    const lines = input.split("\n");
    var n = parseInt(lines[0]);
    let xs = lines[1].split(" ").map(Number);
    let as = lines[2].split(" ").map(Number);
    let dp = Array(n+1);
    dp.fill(Infinity);
    dp[0] = 0;
    for(let i=0; i<n; ++i) {
        let sum = as[i];
        let xor = as[i];
        for(let j=i+1; ; ++j) {
            // [i, j)は一つも合体しない。
            dp[j] = Math.min(dp[j], dp[i] + sum);
            if(j==n) break;
            sum += as[j];
            xor ^= as[j];
            // iとjは合体する。このときiとj-1の間はすべて合体してよい。
            // なぜならa+b>=a xor bが成り立つから。
            dp[j+1] = Math.min(dp[j+1], dp[i] + xor + xs[j]-xs[i]);
        }
    }
    console.log(dp[n]);
}
0