結果

問題 No.324 落ちてた閉路グラフ
ユーザー te-shte-sh
提出日時 2017-06-27 17:10:17
言語 D
(dmd 2.106.1)
結果
MLE  
実行時間 -
コード長 1,160 bytes
コンパイル時間 791 ms
コンパイル使用メモリ 101,592 KB
実行使用メモリ 576,648 KB
最終ジャッジ日時 2024-06-12 20:34:05
合計ジャッジ時間 20,127 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1,279 ms
234,820 KB
testcase_05 MLE -
testcase_06 AC 893 ms
189,432 KB
testcase_07 MLE -
testcase_08 AC 913 ms
196,156 KB
testcase_09 AC 387 ms
90,856 KB
testcase_10 AC 937 ms
195,992 KB
testcase_11 AC 389 ms
90,872 KB
testcase_12 RE -
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 204 ms
51,928 KB
testcase_15 AC 392 ms
88,816 KB
testcase_16 RE -
testcase_17 AC 1 ms
6,944 KB
testcase_18 AC 1 ms
6,940 KB
testcase_19 AC 1 ms
6,940 KB
testcase_20 RE -
testcase_21 AC 1 ms
6,944 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 1 ms
6,944 KB
testcase_24 RE -
testcase_25 AC 1 ms
6,944 KB
testcase_26 AC 1 ms
6,944 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 1 ms
6,940 KB
testcase_29 RE -
testcase_30 AC 1 ms
6,940 KB
testcase_31 AC 1 ms
6,944 KB
testcase_32 MLE -
testcase_33 AC 2,246 ms
472,164 KB
testcase_34 AC 952 ms
199,844 KB
testcase_35 AC 7 ms
6,940 KB
testcase_36 AC 246 ms
56,724 KB
testcase_37 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.algorithm, std.conv, std.range, std.stdio, std.string;

void main()
{
  auto rd = readln.split.to!(int[]), n = rd[0], m = rd[1];
  auto w = readln.split.to!(int[]);

  auto calc1()
  {
    auto dp = new int[][][](n+1, m+1, 2);
    foreach (i; 0..n+1)
      foreach (j; 0..m+1)
        foreach (k; 0..2)
          dp[i][j][k] = -10^^9;
    dp[1][0][0] = 0;

    foreach (i; 1..n)
      foreach (j; 0..m+1) {
        dp[i+1][j][0] = max(dp[i+1][j][0], dp[i][j][0], dp[i][j][1]);
        if (j < m)
          dp[i+1][j+1][1] = max(dp[i+1][j+1][1], dp[i][j][0], dp[i][j][1] + w[i-1]);
      }

    return max(dp[n][m][0], dp[n][m][1]);
  }

  auto calc2()
  {
    auto dp = new int[][][](n+1, m+1, 2);
    foreach (i; 0..n+1)
      foreach (j; 0..m+1)
        foreach (k; 0..2)
          dp[i][j][k] = -10^^9;
    dp[1][1][1] = 0;

    foreach (i; 1..n)
      foreach (j; 0..m+1) {
        dp[i+1][j][0] = max(dp[i+1][j][0], dp[i][j][0], dp[i][j][1]);
        if (j < m)
          dp[i+1][j+1][1] = max(dp[i+1][j+1][1], dp[i][j][0], dp[i][j][1] + w[i-1]);
      }

    return max(dp[n][m][0], dp[n][m][1] + w[n-1]);
  }

  writeln(max(calc1, calc2));
}
0