結果

問題 No.448 ゆきこーだーの雨と雪 (3)
ユーザー pekempeypekempey
提出日時 2016-11-18 23:28:38
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 1,460 bytes
コンパイル時間 1,570 ms
コンパイル使用メモリ 172,720 KB
実行使用メモリ 11,004 KB
最終ジャッジ日時 2024-06-11 19:31:08
合計ジャッジ時間 4,365 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,808 KB
testcase_01 AC 2 ms
7,936 KB
testcase_02 AC 3 ms
8,064 KB
testcase_03 AC 4 ms
8,064 KB
testcase_04 AC 4 ms
7,892 KB
testcase_05 AC 3 ms
7,936 KB
testcase_06 AC 4 ms
7,888 KB
testcase_07 AC 3 ms
8,012 KB
testcase_08 AC 3 ms
7,936 KB
testcase_09 AC 3 ms
7,912 KB
testcase_10 AC 4 ms
8,064 KB
testcase_11 AC 4 ms
8,020 KB
testcase_12 AC 3 ms
7,936 KB
testcase_13 AC 14 ms
8,320 KB
testcase_14 AC 14 ms
8,320 KB
testcase_15 AC 32 ms
8,960 KB
testcase_16 AC 51 ms
9,808 KB
testcase_17 AC 51 ms
9,984 KB
testcase_18 AC 11 ms
8,184 KB
testcase_19 AC 70 ms
10,624 KB
testcase_20 AC 26 ms
8,704 KB
testcase_21 AC 69 ms
10,512 KB
testcase_22 AC 27 ms
8,832 KB
testcase_23 AC 73 ms
10,472 KB
testcase_24 AC 20 ms
8,388 KB
testcase_25 AC 73 ms
10,560 KB
testcase_26 AC 11 ms
8,300 KB
testcase_27 AC 54 ms
9,760 KB
testcase_28 AC 53 ms
9,608 KB
testcase_29 AC 30 ms
8,820 KB
testcase_30 AC 74 ms
10,616 KB
testcase_31 AC 13 ms
8,128 KB
testcase_32 AC 13 ms
8,284 KB
testcase_33 AC 77 ms
10,880 KB
testcase_34 AC 75 ms
10,880 KB
testcase_35 AC 79 ms
10,984 KB
testcase_36 AC 72 ms
10,880 KB
testcase_37 AC 85 ms
10,984 KB
testcase_38 AC 80 ms
11,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

const int N = 2e5;

template<class T1, class T2>
void chmin(T1 &a, T2 b) {
    if (b < a) a = b;
}

const int M = 1 << 18;
int seg[M * 2];

int maximum(int l, int r) {
    int res = -2e9;
    for (l += M, r += M; l < r; l >>= 1, r >>= 1) {
        if (l & 1) res = max(res, seg[l++]);
        if (r & 1) res = max(res, seg[--r]);
    }
    return res;
}

int main() {
    int n, K;
    cin >> n >> K;

    vector<int> T(n), D(n);
    for (int i = 0; i < n; i++) scanf("%d %d", &T[i], &D[i]);

    static int dp[N + 1];
    fill_n(dp, N + 1, INT_MAX);
    fill_n(seg, M * 2, -2e9);
    dp[0] = 0;

    for (int i = 0; i < n; i++) seg[i + M] = D[i];
    for (int i = M - 1; i >= 1; i--) seg[i] = max(seg[i * 2], seg[i * 2 + 1]);

    for (int i = 0; i < n; i++) {
        int j = lower_bound(T.begin(), T.end(), T[i] + K) - T.begin();
        chmin(dp[j], max(dp[i], maximum(i + 1, j)));
        chmin(dp[i + 1], max(dp[i], D[i]));
    }

    vector<int64_t> sum(n + 1);
    for (int i = 0; i < n; i++) sum[i + 1] = sum[i] + (D[i] <= dp[n] ? D[i] : 2e9);

    static int64_t dp2[N + 1];
    fill_n(dp2, N + 1, 1e18);
    dp2[0] = 0;
    for (int i = 0; i < n; i++) {
        int j = lower_bound(T.begin(), T.end(), T[i] + K) - T.begin();
        chmin(dp2[j], dp2[i] + sum[j] - sum[i + 1]);
        if (D[i] <= dp[n]) chmin(dp2[i + 1], dp2[i] + D[i]);
    }

    cout << dp[n] << endl;
    cout << dp2[n] << endl;
}
0