結果

問題 No.818 Dinner time
ユーザー nebukuro09nebukuro09
提出日時 2019-04-19 22:01:16
言語 D
(dmd 2.109.1)
結果
WA  
実行時間 -
コード長 1,065 bytes
コンパイル時間 659 ms
コンパイル使用メモリ 120,604 KB
実行使用メモリ 14,252 KB
最終ジャッジ日時 2024-06-22 00:49:11
合計ジャッジ時間 3,565 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 WA -
testcase_10 AC 1 ms
6,940 KB
testcase_11 WA -
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 1 ms
6,944 KB
testcase_15 AC 1 ms
6,944 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 75 ms
13,384 KB
testcase_18 AC 51 ms
13,100 KB
testcase_19 AC 51 ms
12,720 KB
testcase_20 AC 69 ms
13,808 KB
testcase_21 AC 61 ms
12,952 KB
testcase_22 AC 48 ms
13,316 KB
testcase_23 AC 56 ms
13,184 KB
testcase_24 AC 80 ms
13,488 KB
testcase_25 AC 62 ms
12,528 KB
testcase_26 AC 48 ms
13,708 KB
testcase_27 AC 72 ms
13,356 KB
testcase_28 AC 61 ms
12,852 KB
testcase_29 AC 85 ms
14,252 KB
testcase_30 AC 71 ms
13,224 KB
testcase_31 AC 72 ms
13,048 KB
testcase_32 AC 55 ms
12,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop, core.stdc.string;

void main() {
    auto s = readln.split.map!(to!int);
    auto N = s[0];
    auto M = s[1];
    auto AB = N.iota.map!(_ => readln.split.map!(to!long).array).array;

    auto dp = new long[][](N+1, 2);
    foreach (i; 0..N+1) dp[i][] = - (1L << 59);
    dp[0][0] = 0;

    foreach (i; 0..N) {
        long tmp = 0;
        long a = AB[i][0], b = AB[i][1];

        if (a >= 0 && b >= 0) {
            tmp += a * (M - 1) + max(a, b);          
        } else if (a < 0 && b >= 0) {
            tmp += b;
        } else if (a >= 0 && b < 0) {
            tmp += a * M;
        } else {
            tmp += max(a * M, b);
        }

        dp[i+1][0] = max(dp[i+1][0], dp[i][0] + tmp);
        dp[i+1][1] = max(dp[i+1][1], dp[i][0] + max(a, b));
        dp[i+1][1] = max(dp[i+1][1], dp[i][1] + max(a, b));
    }

    dp[1..$].map!(d => d.reduce!max).reduce!max.writeln;
}
0