結果

問題 No.1008 Bench Craftsman
ユーザー MisterMister
提出日時 2020-03-06 22:07:10
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,987 bytes
コンパイル時間 1,107 ms
コンパイル使用メモリ 133,188 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-07 20:39:37
合計ジャッジ時間 7,085 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 WA -
testcase_05 AC 329 ms
6,944 KB
testcase_06 AC 50 ms
6,944 KB
testcase_07 WA -
testcase_08 AC 11 ms
6,940 KB
testcase_09 AC 238 ms
6,940 KB
testcase_10 AC 257 ms
6,940 KB
testcase_11 AC 241 ms
6,944 KB
testcase_12 AC 241 ms
6,944 KB
testcase_13 AC 236 ms
6,944 KB
testcase_14 AC 230 ms
6,940 KB
testcase_15 AC 162 ms
6,944 KB
testcase_16 AC 175 ms
6,944 KB
testcase_17 AC 160 ms
6,940 KB
testcase_18 WA -
testcase_19 AC 169 ms
6,944 KB
testcase_20 AC 92 ms
6,944 KB
testcase_21 AC 120 ms
6,940 KB
testcase_22 AC 251 ms
6,940 KB
testcase_23 AC 280 ms
6,940 KB
testcase_24 AC 291 ms
6,940 KB
testcase_25 AC 60 ms
6,940 KB
testcase_26 AC 50 ms
6,940 KB
testcase_27 AC 201 ms
6,944 KB
testcase_28 AC 171 ms
6,944 KB
testcase_29 AC 287 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>

template <class T>
using MinHeap = std::priority_queue<T, std::vector<T>, std::greater<T>>;

using lint = long long;
constexpr lint INF = 1LL << 30;

void solve() {
    int n, m;
    std::cin >> n >> m;

    std::vector<lint> ots(n);
    for (auto& t : ots) std::cin >> t;

    std::vector<std::pair<int, lint>> ps(m);
    for (auto& p : ps) {
        std::cin >> p.first >> p.second;
        --p.first;
    }
    std::sort(ps.begin(), ps.end());

    lint ok = INF, ng = -1;
    while (ok - ng > 1) {
        lint c = (ok + ng) / 2;
        auto ts = ots;

        MinHeap<lint> que;
        lint sum = 0;
        int j = 0;
        for (int i = 0; i < n; ++i) {
            while (j < m && ps[j].first <= i) {
                lint w = ps[j].second + c * ps[j].first;
                sum += w;
                que.push(w);
                ++j;
            }

            while (!que.empty() && que.top() - c * i <= 0) {
                sum -= que.top();
                que.pop();
            }

            ts[i] -= sum - c * i * que.size();
        }

        while (!que.empty()) que.pop();
        sum = 0;
        j = m - 1;
        for (int i = n - 1; i >= 0; --i) {
            while (j >= 0 && ps[j].first > i) {
                lint w = ps[j].second - c * ps[j].first;
                sum += w;
                que.push(w);
                --j;
            }

            while (!que.empty() && que.top() + c * i < 0) {
                sum -= que.top();
                que.pop();
            }

            ts[i] -= sum + c * i * que.size();
        }

        if (std::any_of(ts.begin(), ts.end(), [](auto x) { return x < 0; })) {
            ng = c;
        } else {
            ok = c;
        }
    }

    std::cout << (ok == INF ? -1 : ok) << std::endl;
}

int main() {
    std::cin.tie(nullptr);
    std::cout.tie(nullptr);
    std::ios::sync_with_stdio(false);

    solve();

    return 0;
}
0