結果

問題 No.2408 Lakes and Fish
ユーザー vjudge1vjudge1
提出日時 2024-05-01 11:48:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 1,012 bytes
コンパイル時間 2,135 ms
コンパイル使用メモリ 206,152 KB
実行使用メモリ 8,312 KB
最終ジャッジ日時 2024-05-01 11:48:56
合計ジャッジ時間 4,264 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 49 ms
8,056 KB
testcase_05 AC 50 ms
7,280 KB
testcase_06 AC 49 ms
7,284 KB
testcase_07 AC 61 ms
7,672 KB
testcase_08 AC 62 ms
7,156 KB
testcase_09 AC 61 ms
7,156 KB
testcase_10 AC 60 ms
8,312 KB
testcase_11 AC 32 ms
6,944 KB
testcase_12 AC 44 ms
7,064 KB
testcase_13 AC 13 ms
6,940 KB
testcase_14 AC 26 ms
6,940 KB
testcase_15 AC 50 ms
6,940 KB
testcase_16 AC 17 ms
6,944 KB
testcase_17 AC 15 ms
6,944 KB
testcase_18 AC 29 ms
6,940 KB
testcase_19 AC 48 ms
6,940 KB
testcase_20 AC 45 ms
7,292 KB
testcase_21 AC 49 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int long long
#define pb push_back
#define ppb pop_back
#define mp make_pair 
#define fi first
#define se second
#define endl '\n'
const int mod = 1e9+7;

void solve(){
    int n, m;
    cin >> n >> m;
    int pohon[n];
    for (int i = 0; i < n; i++){
        cin >> pohon[i];
    }
    vector<tuple<int, int, int>> ikan;
    for (int i = 0; i < m; i++){
        int a, b, c;
        cin >> a >> b >> c;
        ikan.pb(make_tuple(a, b, c));
    }
    int ans = 0;
    for (auto i:ikan){
        int f = get<0> (i);
        int b = get<1> (i);
        int w = get<2> (i);
        int y = upper_bound(pohon, pohon+n, f)-pohon;
        if (y > n-1) y = n-1;
        int x = y-1;
        if (x < 0) x = 0;
        w = max(w-abs(f-pohon[x]), w-abs(f-pohon[y]));
        ans += max(b, w);
    }
    cout << ans << endl;
}

signed main (){
    ios_base::sync_with_stdio(false);
    cin.tie(0);

    int t = 1; //cin >> t;
    while (t--){
        solve();
    }
}
0