結果

問題 No.1767 BLUE to RED
ユーザー kokatsukokatsu
提出日時 2021-11-27 02:28:38
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 646 bytes
コンパイル時間 2,193 ms
コンパイル使用メモリ 212,928 KB
実行使用メモリ 21,472 KB
最終ジャッジ日時 2024-06-22 13:32:00
合計ジャッジ時間 5,437 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 75 ms
17,272 KB
testcase_10 AC 94 ms
15,052 KB
testcase_11 AC 80 ms
15,196 KB
testcase_12 AC 75 ms
16,736 KB
testcase_13 AC 100 ms
16,744 KB
testcase_14 AC 132 ms
20,980 KB
testcase_15 AC 129 ms
20,928 KB
testcase_16 AC 131 ms
21,424 KB
testcase_17 AC 131 ms
21,404 KB
testcase_18 AC 129 ms
20,756 KB
testcase_19 AC 131 ms
21,368 KB
testcase_20 AC 129 ms
20,948 KB
testcase_21 AC 132 ms
20,968 KB
testcase_22 AC 135 ms
21,472 KB
testcase_23 AC 131 ms
21,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main() {
    int N, M;
    readf("%d %d\n", N, M);

    auto A = readln.chomp.split.to!(long[]);
    auto B = readln.chomp.split.to!(long[]);

    A = [long.min / 2] ~ A ~ [long.max / 2];

    long res, pos;
    foreach (i; 0 .. N+1) {
        long[] C = [A[i]];
        while (pos < M && B[pos] < A[i+1]) {
            C ~= B[pos];
            ++pos;
        }

        auto l = C.length;
        if (l == 1) {
            continue;
        }

        C ~= A[i+1];

        long w;
        foreach (j; 0 .. l) {
            w = max(w, C[j+1]-C[j]);
        }
        
        res += A[i+1] - A[i] - w;
    }

    res.writeln;
}
0