結果

問題 No.448 ゆきこーだーの雨と雪 (3)
ユーザー parukiparuki
提出日時 2016-11-18 23:16:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 3,196 bytes
コンパイル時間 1,560 ms
コンパイル使用メモリ 176,152 KB
実行使用メモリ 25,216 KB
最終ジャッジ日時 2024-05-04 18:47:55
合計ジャッジ時間 4,366 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 WA -
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 WA -
testcase_13 AC 11 ms
5,888 KB
testcase_14 AC 13 ms
6,144 KB
testcase_15 AC 32 ms
11,520 KB
testcase_16 WA -
testcase_17 AC 59 ms
18,688 KB
testcase_18 AC 9 ms
5,376 KB
testcase_19 WA -
testcase_20 AC 26 ms
9,856 KB
testcase_21 AC 74 ms
23,168 KB
testcase_22 AC 26 ms
10,112 KB
testcase_23 AC 74 ms
23,296 KB
testcase_24 WA -
testcase_25 AC 73 ms
22,912 KB
testcase_26 WA -
testcase_27 AC 55 ms
17,920 KB
testcase_28 WA -
testcase_29 AC 28 ms
10,496 KB
testcase_30 WA -
testcase_31 AC 11 ms
5,760 KB
testcase_32 AC 13 ms
6,016 KB
testcase_33 WA -
testcase_34 AC 80 ms
25,088 KB
testcase_35 WA -
testcase_36 AC 83 ms
25,088 KB
testcase_37 WA -
testcase_38 AC 80 ms
24,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define FOR(i,j,k) for(int (i)=(j);(i)<(int)(k);++(i))
#define rep(i,j) FOR(i,0,j)
#define each(x,y) for(auto &(x):(y))
#define mp make_pair
#define mt make_tuple
#define all(x) (x).begin(),(x).end()
#define debug(x) cout<<#x<<": "<<(x)<<endl
#define smax(x,y) (x)=max((x),(y))
#define smin(x,y) (x)=min((x),(y))
#define MEM(x,y) memset((x),(y),sizeof (x))
#define sz(x) (int)(x).size()
typedef long long ll;
typedef pair<int, int> pii;
typedef vector<int> vi;
typedef vector<ll> vll;

template<class Cmp=less_equal<int>>
class SparseTableRMQ{
public:
    SparseTableRMQ(){
    }
    SparseTableRMQ(int *ar, int n): n(n), data(n){
        for(int i = 0; i < n;++i) data[i] = ar[i];
        table = buildRMQ();
    }

    int queryPos(int l, int r){
        int k = lgInt(r - l - 1);
        int lid = table[l + n*k], rid = table[r + n*k - (1 << k)];
        return (cmp(data[lid], data[rid])) ? lid : rid;
    }

    int queryValue(int l, int r){
        return data[queryPos(l, r)];
    }
private:
    int n;
    vector<int> data, table;
    Cmp cmp;
    int lgInt(int v){
        static const unsigned b[] = {0x2, 0xC, 0xF0, 0xFF00, 0xFFFF0000};
        static const unsigned S[] = {1, 2, 4, 8, 16};
        int res = 0;
        for (int i = 4; i >= 0; i--) {
            if (v & b[i]) {
                v >>= S[i];
                res |= S[i];
            }
        }
        return res;
    }

    vector<int> buildRMQ() {
        int logn = 1;
        for (int k = 1; k < n; k *= 2) ++logn;
        vector<int> b(n*logn);
        for(int i = 0; i < n; ++i)b[i] = i;
        int cur = 0;
        for(int k = 1; k < n; k *= 2){
            copy(b.begin() + cur, b.begin() + cur + n, b.begin() + cur + n);
            cur += n;
            for(int i = 0; i < n - k; ++i){
                int idl = b[cur + i], idr = b[cur + i + k];
                if(cmp(data[idl], data[idr])){
                    b[cur + i] = idl;
                } else{
                    b[cur + i] = idr;
                }
            }
        }
        return b;
    }
};
typedef SparseTableRMQ<less_equal<ll>> RMinQ;
typedef SparseTableRMQ<greater_equal<ll>> RMaxQ;

int D[200001];

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int N, K;
    const ll INF = LLONG_MAX;
    while(cin >> N >> K) {
        vi T(N + 1);
        rep(i, N) cin >> T[i] >> D[i];

        vector<pair<int, ll>> dp(N + 1, mp(INT_MAX, INF));
        dp[0] = mp(0, 0);

        vll sumD(N + 1);
        rep(i, N) {
            sumD[i + 1] = sumD[i] + D[i];
        }
        RMaxQ rmq(D, N);

        T[N] = (int)2e9 + 1;

        rep(i, N) {
            smin(dp[i + 1], mp(max(dp[i].first, D[i]), dp[i].second + D[i]));
            
            int lb = i, ub = N, mid;
            while(ub - lb > 1) {
                mid = (lb + ub) / 2;
                (T[mid] - T[i] >= K ? ub : lb) = mid;
            }

            int x = i + 1 == ub ? 0 : rmq.queryValue(i + 1, ub);
            ll y = sumD[ub] - sumD[i + 1];
            
            smin(dp[ub], mp(max(dp[i].first, x), dp[i].second + y));
        }

        cout << dp[N].first << endl << dp[N].second << endl;
    }
}
0