結果

問題 No.448 ゆきこーだーの雨と雪 (3)
ユーザー te-shte-sh
提出日時 2017-12-21 18:35:28
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 1,146 bytes
コンパイル時間 760 ms
コンパイル使用メモリ 112,708 KB
実行使用メモリ 7,140 KB
最終ジャッジ日時 2024-06-12 23:14:27
合計ジャッジ時間 5,248 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 15 ms
6,940 KB
testcase_14 AC 16 ms
6,944 KB
testcase_15 AC 38 ms
6,944 KB
testcase_16 AC 65 ms
6,940 KB
testcase_17 AC 64 ms
6,940 KB
testcase_18 AC 12 ms
6,940 KB
testcase_19 AC 87 ms
6,944 KB
testcase_20 AC 32 ms
6,940 KB
testcase_21 AC 85 ms
6,940 KB
testcase_22 AC 33 ms
6,944 KB
testcase_23 AC 84 ms
6,944 KB
testcase_24 AC 21 ms
6,944 KB
testcase_25 AC 83 ms
6,940 KB
testcase_26 AC 11 ms
6,940 KB
testcase_27 AC 62 ms
6,940 KB
testcase_28 AC 60 ms
6,944 KB
testcase_29 AC 33 ms
6,944 KB
testcase_30 AC 87 ms
6,940 KB
testcase_31 AC 14 ms
6,944 KB
testcase_32 AC 15 ms
6,940 KB
testcase_33 AC 96 ms
7,140 KB
testcase_34 AC 93 ms
6,992 KB
testcase_35 AC 94 ms
7,028 KB
testcase_36 AC 87 ms
7,060 KB
testcase_37 AC 94 ms
6,976 KB
testcase_38 AC 93 ms
7,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.algorithm, std.conv, std.range, std.stdio, std.string;
import std.typecons;  // Tuple, Nullable, BigFlags

void main()
{
  auto rd = readln.split.to!(int[]), n = rd[0], k = rd[1];
  auto t = new int[](n), d = new long[](n);
  foreach (i; 0..n) {
    auto rd2 = readln.splitter;
    t[i] = rd2.front.to!int; rd2.popFront();
    d[i] = rd2.front.to!long;
  }

  auto canSolve(long x)
  {
    auto prev = -k.to!long;
    foreach (i; 0..n)
      if (d[i] > x) {
        if (t[i] - prev < k) {
          return false;
        } else {
          prev = t[i];
        }
      }
    return true;
  }

  auto bsearch = iota(d.maxElement+1).map!(x => tuple(x, canSolve(x))).assumeSorted!"a[1]<b[1]";
  auto dm = bsearch.upperBound(tuple(0, false)).front[0];

  writeln(dm);

  auto dp = new long[](n+1), prev = -k.to!long;
  foreach (i; 0..n) {
    auto j = t.assumeSorted.lowerBound(t[i]-k+1).length;
    if (d[i] > dm) {
      dp[i+1] = d[i] + dp[j];
      prev = t[i];
    } else {
      if (t[i] - prev < k) {
        dp[i+1] = dp[i];
      } else {
        dp[i+1] = max(dp[i], d[i] + dp[j]);
      }
    }
  }

  writeln(d.sum - dp[n]);
}
0