結果

問題 No.2408 Lakes and Fish
ユーザー yansi819yansi819
提出日時 2024-04-07 13:16:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 943 bytes
コンパイル時間 3,810 ms
コンパイル使用メモリ 261,520 KB
実行使用メモリ 6,784 KB
最終ジャッジ日時 2024-10-01 04:27:17
合計ジャッジ時間 7,773 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 136 ms
6,784 KB
testcase_05 AC 138 ms
6,656 KB
testcase_06 AC 131 ms
6,656 KB
testcase_07 AC 153 ms
6,656 KB
testcase_08 AC 158 ms
6,528 KB
testcase_09 AC 152 ms
6,656 KB
testcase_10 AC 152 ms
6,656 KB
testcase_11 AC 78 ms
5,248 KB
testcase_12 AC 110 ms
5,632 KB
testcase_13 AC 30 ms
5,248 KB
testcase_14 AC 63 ms
5,248 KB
testcase_15 AC 123 ms
6,144 KB
testcase_16 AC 43 ms
5,248 KB
testcase_17 AC 34 ms
5,248 KB
testcase_18 AC 72 ms
5,248 KB
testcase_19 AC 117 ms
6,016 KB
testcase_20 AC 113 ms
5,888 KB
testcase_21 AC 122 ms
5,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;
using ld = long double;
using mint = modint998244353;

int N, M;
ll L[101010], F[101010], B[101010], W[101010];

int main() {
  cin >> N >> 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++) {
    int pos1 = lower_bound(L, L + N, F[i]) - L;
    if (pos1 == 0) {
      if (abs(L[pos1] - F[i]) < W[i] - B[i]) ans += W[i] - abs(L[pos1] - F[i]);
      else ans += B[i];
    } else if (pos1 == N) {
      if (abs(L[pos1 - 1] - F[i]) < W[i] - B[i]) ans += W[i] - abs(L[pos1 - 1] - F[i]);
      else ans += B[i];
    } else {
      if (min(abs(L[pos1] - F[i]), abs(L[pos1 - 1] - F[i])) < W[i] - B[i]) ans += W[i] - min(abs(L[pos1] - F[i]), abs(L[pos1 - 1] - F[i]));
      else ans += B[i];
    }
  }
  cout << ans << endl;
  return 0;
}
0