結果

問題 No.448 ゆきこーだーの雨と雪 (3)
ユーザー nebukuro09nebukuro09
提出日時 2016-11-21 10:07:10
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 1,735 bytes
コンパイル時間 758 ms
コンパイル使用メモリ 116,340 KB
実行使用メモリ 19,712 KB
最終ジャッジ日時 2024-06-12 05:09:34
合計ジャッジ時間 4,863 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 22 ms
5,376 KB
testcase_14 AC 25 ms
5,376 KB
testcase_15 AC 63 ms
11,796 KB
testcase_16 AC 105 ms
7,680 KB
testcase_17 AC 107 ms
12,800 KB
testcase_18 AC 18 ms
5,376 KB
testcase_19 AC 144 ms
18,048 KB
testcase_20 AC 52 ms
8,832 KB
testcase_21 AC 138 ms
14,592 KB
testcase_22 AC 51 ms
5,376 KB
testcase_23 AC 143 ms
15,256 KB
testcase_24 AC 37 ms
8,320 KB
testcase_25 AC 141 ms
14,720 KB
testcase_26 AC 17 ms
5,376 KB
testcase_27 AC 103 ms
13,880 KB
testcase_28 AC 98 ms
7,396 KB
testcase_29 AC 54 ms
5,376 KB
testcase_30 AC 151 ms
18,176 KB
testcase_31 AC 21 ms
5,376 KB
testcase_32 AC 23 ms
5,376 KB
testcase_33 AC 158 ms
18,560 KB
testcase_34 AC 154 ms
14,464 KB
testcase_35 AC 161 ms
19,712 KB
testcase_36 AC 149 ms
14,720 KB
testcase_37 AC 153 ms
10,368 KB
testcase_38 AC 152 ms
13,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio;
import std.array;
import std.string;
import std.conv;
import std.algorithm;
import std.typecons;
import std.range;
import std.random;
import std.math;
import std.container;
import std.numeric;


void main() {
  alias Tuple!(long, "t", long, "d") Task;
  auto input = readln.split;
  auto N = input[0].to!int;
  auto K = input[1].to!long;
  auto tasks = new Task[](N);
  foreach (i; 0..N) {
    input = readln.split;
    tasks[i] = Task(input[0].to!long, input[1].to!long);
  }
  
  long high = 10^^9;
  long low = -1;
  while (high - low > 1) {
    auto mid = (high - low) / 2 + low;
    auto last = -K-1;
    auto flag = true;
    foreach (task; tasks) {
      if (task.d > mid) {
        if (task.t - last < K) {
          flag = false;
          break;
        }
        else
          last = task.t;
      }
    }
    if (flag)
      high = mid;
    else
      low = mid;
  }

  long ans;

  long[] sleeps = [-K-1];
  foreach (task; tasks)
    if (task.d > high) 
      sleeps ~= task.t;
  sleeps ~= 10^^9 + K + 1;
  
  int last = 0;
  Task[] new_tasks;
  foreach (task; tasks) {
    if (task.d > high) {
      last += 1;
      ans += task.d;
    }
    else if (sleeps[last+1] - task.t >= K && task.t - sleeps[last] >= K)
      new_tasks ~= task;
  }

  auto M = new_tasks.length.to!int;
  auto dp = new long[](M);
  if (M == 0) {M += 1; dp ~= 0;}
  else {dp[0] = new_tasks[0].d;}
  last = -1;
  foreach (i; 1..M) {
    auto t = new_tasks[i].t;
    auto d = new_tasks[i].d;
    while (t - new_tasks[last+1].t >= K)
      last += 1;
    if (last >= 0)
      dp[i] = max(dp[i-1], dp[last]+d);
    else
      dp[i] = max(dp[i-1], d);
  }
  
  writeln(high);
  writeln(tasks.map!(t => t.d).sum - ans - dp[M-1]);
  
}
0