結果

問題 No.448 ゆきこーだーの雨と雪 (3)
ユーザー しらっ亭しらっ亭
提出日時 2016-11-18 23:17:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,990 bytes
コンパイル時間 1,622 ms
コンパイル使用メモリ 174,592 KB
実行使用メモリ 15,232 KB
最終ジャッジ日時 2024-05-04 18:48:09
合計ジャッジ時間 4,574 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 WA -
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 WA -
testcase_13 AC 14 ms
5,376 KB
testcase_14 AC 16 ms
5,376 KB
testcase_15 AC 40 ms
8,320 KB
testcase_16 WA -
testcase_17 AC 70 ms
12,856 KB
testcase_18 AC 12 ms
5,376 KB
testcase_19 WA -
testcase_20 AC 32 ms
6,784 KB
testcase_21 AC 92 ms
14,464 KB
testcase_22 AC 34 ms
7,936 KB
testcase_23 AC 92 ms
14,464 KB
testcase_24 WA -
testcase_25 AC 91 ms
14,392 KB
testcase_26 WA -
testcase_27 AC 67 ms
12,548 KB
testcase_28 WA -
testcase_29 AC 35 ms
8,064 KB
testcase_30 WA -
testcase_31 AC 14 ms
5,376 KB
testcase_32 AC 14 ms
5,376 KB
testcase_33 WA -
testcase_34 AC 98 ms
15,104 KB
testcase_35 WA -
testcase_36 AC 91 ms
15,148 KB
testcase_37 WA -
testcase_38 AC 99 ms
15,104 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'void Main()':
main.cpp:72:23: warning: overflow in conversion from 'double' to 'int' changes value from '1.0e+18' to '2147483647' [-Woverflow]
   72 |   const int inf = 1e18+7;
      |                   ~~~~^~

ソースコード

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;
};

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

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

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

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

  const int inf = 1e18+7;

  vector<pair<ll, ll>> dp(n+1);
  rep(i, n+1) dp[i].fst = dp[i].snd = inf;
  dp[0] = {0, 0};

  rep(i, n) if (dp[i].fst < inf) {
    //_p("dp[%d]: (%lld, %lld)\n", i, dp[i].fst, dp[i].snd);
    ll t = T[i];
    ll d = D[i];

    // yaru
    //_p("dp[%d+1]: (%lld, %lld)\n", i+1, dp[i+1].fst, dp[i+1].snd);
    dp[i + 1] = min(dp[i + 1], {max(dp[i].fst, d), dp[i].snd + d});
    //_p("dp[%d+1]: (%lld, %lld)\n", i+1, dp[i+1].fst, dp[i+1].snd);


    // yaraseru
    int ni = distance(T.begin(), lower_bound(all(T), t + k));
    ni = min(ni, n);
    //cout<<"ni: "<<ni<<endl;
    ll su = R[ni] - R[i + 1];
    ll ma = seg.getval(i + 1, ni);
    //cout<<"su: "<<su<<endl;
    //cout<<"ma: "<<ma<<endl;

    dp[ni] = min(dp[ni], {max(dp[i].fst, ma), dp[i].snd + su});
  }

  cout << dp[n].fst << endl << dp[n].snd << endl;
}
int main() { cin.tie(nullptr); ios::sync_with_stdio(false); Main(); return 0; }
0