結果

問題 No.2408 Lakes and Fish
ユーザー umezoumezo
提出日時 2023-08-11 21:39:31
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 744 bytes
コンパイル時間 2,086 ms
コンパイル使用メモリ 204,388 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2024-11-18 15:38:46
合計ジャッジ時間 4,051 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
 
#include<bits/stdc++.h>
using namespace std;
 
int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  ll n,m;
  cin>>n>>m;
  vector<ll> L(n);
  rep(i,n) cin>>L[i];
  vector<ll> F(m),B(m),W(m);
  rep(i,m) cin>>F[i]>>B[i]>>W[i];
  
  ll ans=0;
  rep(i,m){
    auto t=lower_bound(ALL(L),F[i])-L.begin();
    ll mi=1e9+7;
    if(t!=n){
      if(L[t]==F[i]){
        ans+=W[i];
        continue;
      }
      ans+=B[i];
      mi=min(mi,L[t]-F[i]);
    }
    else ans+=B[i];
    if(t!=0){
      t--;
      mi=min(mi,F[i]-L[t]);
    }
    if(W[i]-B[i]>mi){
      ans+=W[i]-B[i]-mi;
    } 
  }
  cout<<ans<<endl;
    
  return 0;
}
0