結果

問題 No.2408 Lakes and Fish
ユーザー vjudge1vjudge1
提出日時 2024-05-01 23:23:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 854 bytes
コンパイル時間 1,706 ms
コンパイル使用メモリ 166,668 KB
実行使用メモリ 6,784 KB
最終ジャッジ日時 2024-05-01 23:23:35
合計ジャッジ時間 3,749 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 1 ms
5,376 KB
testcase_04 AC 46 ms
6,656 KB
testcase_05 AC 47 ms
6,528 KB
testcase_06 AC 49 ms
6,528 KB
testcase_07 AC 57 ms
6,656 KB
testcase_08 AC 58 ms
6,656 KB
testcase_09 AC 59 ms
6,656 KB
testcase_10 AC 56 ms
6,784 KB
testcase_11 AC 32 ms
5,376 KB
testcase_12 WA -
testcase_13 AC 10 ms
5,376 KB
testcase_14 AC 24 ms
5,376 KB
testcase_15 AC 46 ms
6,016 KB
testcase_16 AC 16 ms
5,376 KB
testcase_17 AC 13 ms
5,376 KB
testcase_18 AC 27 ms
5,376 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 48 ms
5,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
    ll n,m;
    cin>>n>>m;
    ll l[n+5],f[m+5],b[m+5],w[m+5];
    l[0]=-1000000005;
    l[n+1]=1000000005;
    for(ll i=1;i<=n;i++)cin>>l[i];
    for(ll i=1;i<=m;i++)cin>>f[i]>>b[i]>>w[i];
    ll ans=0;
    for(ll i=1;i<=m;i++){
        int left=1,right=n,mid;
        while(left<right){
            mid=(left+right)/2;
            if(f[i]<=l[mid])right=mid;
            else left=mid+1;
        }
        mid=(left+right)/2;
        if(f[i]==l[mid])ans+=w[i];
        else{
            if(mid==n&&f[i]>l[mid])mid++;
            ll tmp=max(w[i]-(l[mid]-f[i]),w[i]-(f[i]-l[mid-1]));
            tmp=max(tmp,b[i]);
            ans+=tmp;
        }
    }
    cout<<ans<<endl;
    return 0;
}

// 10 58 82 71 33
0