結果

問題 No.448 ゆきこーだーの雨と雪 (3)
ユーザー しらっ亭しらっ亭
提出日時 2016-11-19 00:56:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 3,052 bytes
コンパイル時間 1,950 ms
コンパイル使用メモリ 171,280 KB
実行使用メモリ 13,724 KB
最終ジャッジ日時 2023-09-02 12:54:42
合計ジャッジ時間 5,680 ms
ジャッジサーバーID
(参考情報)
judge14 / judge16
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 1 ms
4,380 KB
testcase_09 AC 2 ms
4,384 KB
testcase_10 AC 2 ms
4,376 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 20 ms
4,388 KB
testcase_14 AC 22 ms
4,636 KB
testcase_15 AC 53 ms
7,624 KB
testcase_16 AC 99 ms
11,092 KB
testcase_17 AC 85 ms
11,828 KB
testcase_18 AC 14 ms
4,380 KB
testcase_19 AC 133 ms
12,888 KB
testcase_20 AC 42 ms
6,248 KB
testcase_21 AC 122 ms
12,804 KB
testcase_22 AC 47 ms
7,456 KB
testcase_23 AC 124 ms
12,948 KB
testcase_24 AC 33 ms
5,424 KB
testcase_25 AC 122 ms
12,804 KB
testcase_26 AC 16 ms
4,376 KB
testcase_27 AC 95 ms
11,532 KB
testcase_28 AC 91 ms
9,068 KB
testcase_29 AC 50 ms
7,336 KB
testcase_30 AC 130 ms
13,004 KB
testcase_31 AC 17 ms
4,436 KB
testcase_32 AC 16 ms
4,660 KB
testcase_33 AC 141 ms
13,652 KB
testcase_34 AC 126 ms
13,620 KB
testcase_35 AC 149 ms
13,724 KB
testcase_36 AC 106 ms
13,620 KB
testcase_37 AC 143 ms
13,608 KB
testcase_38 AC 117 ms
13,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define _p(...) (void)printf(__VA_ARGS__)
#define forr(x,arr) for(auto&& x:arr)
#define _overload3(_1,_2,_3,name,...) name
#define _rep2(i,n) _rep3(i,0,n)
#define _rep3(i,a,b) for(int i=int(a);i<int(b);++i)
#define rep(...) _overload3(__VA_ARGS__,_rep3,_rep2,)(__VA_ARGS__)
#define _rrep2(i,n) _rrep3(i,0,n)
#define _rrep3(i,a,b) for(int i=int(b)-1;i>=int(a);i--)
#define rrep(...) _overload3(__VA_ARGS__,_rrep3,_rrep2,)(__VA_ARGS__)
#define all(x) (x).begin(), (x).end()
#define bit(n) (1LL<<(n))
#define sz(x) ((int)(x).size())
#define fst first
#define snd second
using ll=long long;using pii=pair<int,int>;using vb=vector<bool>;
using vi=vector<int>;using vvi=vector<vi>;using vvvi=vector<vvi>;
using vl=vector<ll>;using vvl=vector<vl>;using vvvl=vector<vvl>;
using vd=vector<double>;using vvd=vector<vd>;using vvvd=vector<vvd>;
using vpii=vector<pii>;using vvpii=vector<vpii>;using vvvpii=vector<vvpii>;
template <typename T> T read() {T t; cin >> t; return t;}

template<class V> struct SegTree0 {
  const int n;
  vector<V> val;

  SegTree0(int _n): n(p2(_n)), val(n * 2, def) {}
  void reinit() {
    val.fill(def);
  }
  V getval(int a, int b) {
    return getval(a, b, 0, 0, n);
  }
  void update(int i, V v) {
    i += n - 1;
    val[i] = v;
    while (i > 0) {
      i = (i - 1) / 2;
      val[i] = comp(val[i * 2 + 1], val[i * 2 + 2]);
    }
  }
  private:
  V getval(int a, int b, int k, int l, int r) {
    if (r <= a || b <= l) return def;
    if (a <= l && r <= b) return val[k];
    return comp(getval(a, b, k * 2 + 1, l, (l + r) / 2), getval(a, b, k * 2 + 2, (l + r) / 2, r));
  }
  static int p2(int n, int m=1) { return m >= n ? m : p2(n, m * 2); }
  V comp(const V& l, const V& r) { return max(l, r);};
  const V def = 0;
};

template<class T> bool amin(T &a, const T &b) { if (b < a) { a = b; return 1; } return 0; }

void Main() {
  int n = read<ll>();
  ll k = read<ll>();

  vl T(n), D(n);
  SegTree0<ll> seg(n);

  rep(i, n) {
    T[i] = read<ll>();
    D[i] = read<ll>();
    seg.update(i, D[i]);
  }

  vector<ll> R(sz(D)+1);
  rep(ii, sz(D)) R[ii+1] = R[ii] + D[ii];

  const ll inf = 1e18+7;

  ll ma;
  {
    vl dp(n+1, inf);
    dp[0] = 0;

    rep(i, n) {
      ll t = T[i];
      ll d = D[i];

      // yaru
      amin(dp[i + 1], max(dp[i], d));

      // yaraseru
      int ni = distance(T.begin(), lower_bound(all(T), t + k));
      amin(dp[ni], max(dp[i], seg.getval(i + 1, ni)));
    }
    ma = dp[n];
  }

  ll su;
  {
    vl dp(n+1, inf);
    dp[0] = 0;

    rep(i, n) if (dp[i] < inf) {
      ll t = T[i];
      ll d = D[i];

      if (d <= ma) {
        // yaru
        amin(dp[i + 1], dp[i] + d);
      }

      // yaraseru
      int ni = distance(T.begin(), lower_bound(all(T), t + k));
      ll must = seg.getval(i + 1, ni);
      if (must <= ma) {
        amin(dp[ni], dp[i] + R[ni - 1 + 1] - R[i + 1]);
      }
    }
    su = dp[n];
  }


  cout << ma << endl << su << endl;
}
int main() { cin.tie(nullptr); ios::sync_with_stdio(false); Main(); return 0; }
0