結果

問題 No.2408 Lakes and Fish
ユーザー vjudge1vjudge1
提出日時 2024-05-01 22:17:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 1,071 bytes
コンパイル時間 2,160 ms
コンパイル使用メモリ 206,964 KB
実行使用メモリ 8,960 KB
最終ジャッジ日時 2024-05-01 22:17:21
合計ジャッジ時間 4,427 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 77 ms
8,832 KB
testcase_05 AC 73 ms
8,960 KB
testcase_06 AC 73 ms
8,832 KB
testcase_07 AC 96 ms
8,960 KB
testcase_08 AC 91 ms
8,960 KB
testcase_09 AC 92 ms
8,960 KB
testcase_10 AC 92 ms
8,960 KB
testcase_11 AC 38 ms
5,376 KB
testcase_12 AC 64 ms
7,808 KB
testcase_13 AC 16 ms
5,376 KB
testcase_14 AC 33 ms
5,376 KB
testcase_15 AC 70 ms
7,296 KB
testcase_16 AC 27 ms
6,272 KB
testcase_17 AC 19 ms
5,376 KB
testcase_18 AC 49 ms
7,040 KB
testcase_19 AC 65 ms
6,272 KB
testcase_20 AC 44 ms
5,376 KB
testcase_21 AC 64 ms
6,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
typedef long long ll;
const ll INF = 1e18;
const ll MOD = 1e9 + 7;
const ll MAXN = 2e5 + 5;
const ll LOG = 100;
#define vll vector <ll>
#define pll pair <ll, ll>
#define fi first
#define se second
#define endl '\n'

ll n, m;
ll a [MAXN];
set <ll> st;
pll b [MAXN];

void solve(){
    cin >> n >> m;
    st.clear();
    for(ll i = 1; i <= n; i++){
        cin >> a[i];
        st.insert(a[i]);
    }
    ll tot = 0;
    for(ll i = 1; i <= m; i++){
        ll x, y, z;
        cin >> x >> y >> z;
        ll mn = INF;
        auto it = st.lower_bound(x);
        if(it != st.end()){
            mn = min(mn, abs(*it - x));
        }
        if(it != st.begin()){
            it = prev(it);
            mn = min(mn, abs(*it - x));
        }
        tot += y + max((ll)0, z-y-mn);
    }
    cout << tot << endl;
}

int main(){
    ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
    // ll t;
    // cin >> t;
    // while(t--){
        solve();
    // }
}
0