結果

問題 No.2408 Lakes and Fish
ユーザー t98slidert98slider
提出日時 2023-08-14 09:32:55
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 567 bytes
コンパイル時間 1,806 ms
コンパイル使用メモリ 168,468 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-22 05:11:40
合計ジャッジ時間 4,762 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 48 ms
5,248 KB
testcase_05 AC 48 ms
5,248 KB
testcase_06 AC 48 ms
5,248 KB
testcase_07 AC 60 ms
5,248 KB
testcase_08 AC 65 ms
5,248 KB
testcase_09 AC 61 ms
5,248 KB
testcase_10 AC 61 ms
5,248 KB
testcase_11 AC 33 ms
5,248 KB
testcase_12 AC 43 ms
5,248 KB
testcase_13 AC 13 ms
5,248 KB
testcase_14 AC 25 ms
5,248 KB
testcase_15 AC 49 ms
5,248 KB
testcase_16 AC 18 ms
5,248 KB
testcase_17 AC 15 ms
5,248 KB
testcase_18 AC 30 ms
5,248 KB
testcase_19 AC 46 ms
5,248 KB
testcase_20 AC 45 ms
5,248 KB
testcase_21 AC 49 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n, m, F, B, W;
    cin >> n >> m;
    vector<int> L(n + 2);
    for(int i = 1; i <= n; i++) cin >> L[i];
    L.back() = (1ll << 31) - 1, L[0] = -(1 << 30);
    auto f = [&](int pos){
        int p = lower_bound(L.begin(), L.end(), pos) - L.begin();
        return min(L[p] - pos, pos - L[p - 1]);
    };
    ll ans = 0;
    while(m--){
        cin >> F >> B >> W;
        ans += max(B, W - f(F));
    }
    cout << ans << '\n';
}
0