結果

問題 No.2408 Lakes and Fish
ユーザー zezerozezero
提出日時 2023-08-11 22:06:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,194 bytes
コンパイル時間 3,627 ms
コンパイル使用メモリ 177,668 KB
実行使用メモリ 6,656 KB
最終ジャッジ日時 2024-04-29 13:04:53
合計ジャッジ時間 8,653 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <utility>
#include <map>
#include <set>
#include <queue>
#include <iomanip>
#include <cmath>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
typedef long long ll;
#define rep(i,n) for (int i = 0; i < int(n);i++)

int main(){
  int n,m;
  cin >> n >> m;
  vector<ll> l(n);
  vector<ll> f(m),b(m),w(m);
  for (int i = 0; i < n;i++){
    cin >> l[i];
  }
  for (int i = 0; i < m;i++){
    cin >> f[i] >> b[i] >> w[i];
  }
  ll ans = 0;
  for (int i = 0; i < m;i++){
    cout << ans << endl;
    auto itr = lower_bound(l.begin(),l.end(),f[i]);
    if (*itr == f[i]){
      ans += w[i];
      continue;
    }
    else if (itr == l.end()){
      ll diff = abs(f[i]-*(l.rbegin()));
      ans += max({b[i],w[i]-diff});
      continue;
    }
    else if (itr == l.begin()){
      ll diff = abs(f[i]-*(l.begin()));
      ans += max(b[i],w[i]-diff);
      continue;
    }
    else{
      ll diff1 = abs(f[i]-*itr),diff2 = abs(f[i]-*(--itr));
      ll val = b[i];      
      ll val1 = w[i]-diff1,val2 = w[i]-diff2;
      ans += max({val,val1,val2});
    }
  }
  cout << ans << endl;

  return 0;
}
0