結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 152 ms
6,820 KB
testcase_05 AC 152 ms
6,816 KB
testcase_06 AC 146 ms
6,816 KB
testcase_07 AC 172 ms
6,820 KB
testcase_08 AC 171 ms
6,816 KB
testcase_09 AC 172 ms
6,816 KB
testcase_10 AC 169 ms
6,816 KB
testcase_11 AC 88 ms
6,820 KB
testcase_12 AC 122 ms
6,820 KB
testcase_13 AC 34 ms
6,820 KB
testcase_14 AC 70 ms
6,820 KB
testcase_15 AC 136 ms
6,820 KB
testcase_16 AC 48 ms
6,816 KB
testcase_17 AC 38 ms
6,816 KB
testcase_18 AC 82 ms
6,816 KB
testcase_19 AC 130 ms
6,816 KB
testcase_20 AC 126 ms
6,820 KB
testcase_21 AC 134 ms
6,820 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