結果

問題 No.2408 Lakes and Fish
ユーザー erbowlerbowl
提出日時 2023-08-12 20:48:16
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 689 bytes
コンパイル時間 2,086 ms
コンパイル使用メモリ 203,900 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-30 15:54:15
合計ジャッジ時間 6,548 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 153 ms
6,944 KB
testcase_05 AC 154 ms
6,940 KB
testcase_06 AC 145 ms
6,940 KB
testcase_07 AC 171 ms
6,940 KB
testcase_08 AC 173 ms
6,944 KB
testcase_09 AC 172 ms
6,944 KB
testcase_10 AC 174 ms
6,940 KB
testcase_11 AC 89 ms
6,944 KB
testcase_12 AC 123 ms
6,940 KB
testcase_13 AC 34 ms
6,944 KB
testcase_14 AC 71 ms
6,940 KB
testcase_15 AC 140 ms
6,944 KB
testcase_16 AC 48 ms
6,940 KB
testcase_17 AC 38 ms
6,940 KB
testcase_18 AC 82 ms
6,940 KB
testcase_19 AC 131 ms
6,944 KB
testcase_20 AC 127 ms
6,940 KB
testcase_21 AC 135 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

typedef long long ll;
typedef long double ld;

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

signed main(){
    ll n,m;
    std::cin >> n>>m;
    vector<ll> lake(n);
    for (int i = 0; i < n; i++) {
        std::cin >> lake[i];
    }
    ll ans = 0;
    for (int i = 0; i < m; i++) {
        ll f,b,w;
        std::cin >> f>>b>>w;
        ll dis = 1e18;
        auto it = lower_bound(lake.begin(),lake.end(),f);
        if(it!=lake.end()){
            dis = min(dis, abs(*it-f));
        }
        if(it!=lake.begin()){
            it--;
            dis = min(dis, abs(*it-f));
        }
        ans += max(b, w-dis);
    }
    std::cout << ans << std::endl;
};



0