結果

問題 No.448 ゆきこーだーの雨と雪 (3)
ユーザー りあんりあん
提出日時 2018-02-06 23:17:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 396 ms / 2,000 ms
コード長 2,840 bytes
コンパイル時間 2,603 ms
コンパイル使用メモリ 217,408 KB
実行使用メモリ 29,596 KB
最終ジャッジ日時 2024-07-19 10:50:32
合計ジャッジ時間 10,503 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 37 ms
5,976 KB
testcase_14 AC 44 ms
6,872 KB
testcase_15 AC 112 ms
10,712 KB
testcase_16 AC 230 ms
19,284 KB
testcase_17 AC 209 ms
15,316 KB
testcase_18 AC 28 ms
5,376 KB
testcase_19 AC 330 ms
27,344 KB
testcase_20 AC 85 ms
9,284 KB
testcase_21 AC 281 ms
19,924 KB
testcase_22 AC 90 ms
9,812 KB
testcase_23 AC 321 ms
22,484 KB
testcase_24 AC 65 ms
8,020 KB
testcase_25 AC 291 ms
19,920 KB
testcase_26 AC 29 ms
5,456 KB
testcase_27 AC 216 ms
16,596 KB
testcase_28 AC 209 ms
18,132 KB
testcase_29 AC 110 ms
11,348 KB
testcase_30 AC 345 ms
27,732 KB
testcase_31 AC 32 ms
5,460 KB
testcase_32 AC 36 ms
5,712 KB
testcase_33 AC 371 ms
28,632 KB
testcase_34 AC 321 ms
19,796 KB
testcase_35 AC 396 ms
29,596 KB
testcase_36 AC 320 ms
20,948 KB
testcase_37 AC 353 ms
24,276 KB
testcase_38 AC 311 ms
19,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll = long long;
using P = pair<ll,ll>;
const ll inf = numeric_limits<ll>::max()/3;

int n;
ll k;
vector< P > tasks;

ll tree[1000000];

void init(int k,int l,int r){
  if(r - l == 1){
    tree[k] = -inf; // init leaf
  }else{
    int chl = k*2+1;
    int chr = k*2+2;
    tree[k] = -inf; // init internal-node
    init(chl, l, (l+r)/2);
    init(chr, (l+r)/2, r);
  }
}

void update(int i,ll x,int k,int l, int r){
  if(l <= i && i < r){
    if(r - l == 1){
      tree[k] = x;
    }else{
      int chl = k*2+1;
      int chr = k*2+2;
      update(i,x,chl,l,(l+r)/2);
      update(i,x,chr,(l+r)/2,r);
      tree[k] = max(tree[chl],tree[chr]);
    }
  }
}

ll find(int a,int b,int k,int l,int r){
  // not cross
  if(r <= a || b <= l)return -inf;
  // [a,b) contain [l,r)
  else if(a <= l && r <= b)return tree[k];
  // otherwise
  else{
    int chl = k*2+1;
    int chr = k*2+2;
    ll vl = find(a,b,chl,l,(l+r)/2);
    ll vr = find(a,b,chr,(l+r)/2,r);
    return max(vl,vr);
  }
}


bool detect(ll m){
  ll last = -inf;
  for(int i = 0;i < n;++i){
    if(tasks[i].second > m){
      if(tasks[i].first - last < k)
        return false;
      last = tasks[i].first;
    }
  }
  return true;
}


int main(void){
  cin >> n >> k;
  tasks.clear();

  // find dmax (by bsearch)
  ll tot = 0;
  set< ll > diff_set;
  vector< ll > diff_vec;
  diff_set.insert(0LL);
  for(int i = 0;i < n;++i){
    ll t,d;
    cin >> t >> d;
    tasks.push_back(P(t,d));
    diff_set.insert(d);
    tot += d;
  }
  for(auto d : diff_set){
    diff_vec.push_back(d);
  }
  sort(diff_vec.begin(),diff_vec.end());
  int l = -1,r = (int)diff_vec.size()-1;
  while(r - l > 1){
    int mid = (l+r)/2;
    //cout << diff_vec[mid] << " " << detect(diff_vec[mid]) << endl;
    if(detect(diff_vec[mid]))
      r = mid;
    else
      l = mid;
  }
  ll dmax = diff_vec[r];

  // remove unavalilable tasks
  vector< ll > used;
  used.push_back(-inf);
  for(int i = 0;i < n;++i){
    if(tasks[i].second > dmax){
      used.push_back(tasks[i].first);
      tot -= tasks[i].second;
    }
  }
  used.push_back(inf);
  vector< P > tasks2;
  int j = 1;
  for(int i = 0;i < n;++i){
    while(used[j] < tasks[i].first) ++j;
    if(used[j-1] + k <= tasks[i].first &&
       tasks[i].first <= used[j] - k){
      tasks2.push_back(tasks[i]);
    }
  }

  // find optimal sum
  int size = (int)tasks2.size();
  init(0,0,size+1);
  vector< ll > tms;
  tms.push_back(0);
  update(0,0,0,0,size+1);
  for(int i = 0;i < size;++i){
    int j = (upper_bound(tms.begin(), tms.end(), tasks2[i].first)
             - tms.begin());
    ll calc = find(0,j,0,0,size+1);
    update(i+1,calc+tasks2[i].second,0,0,size+1);
    tms.push_back(tasks2[i].first + k);
  }
  cout << dmax << endl;
  cout << tot - find(0,size+1,0,0,size+1) << endl;
  return 0;
}
0