結果

問題 No.2408 Lakes and Fish
ユーザー vjudge1vjudge1
提出日時 2024-05-01 22:18:21
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 645 bytes
コンパイル時間 3,849 ms
コンパイル使用メモリ 277,304 KB
実行使用メモリ 8,320 KB
最終ジャッジ日時 2024-11-22 05:29:08
合計ジャッジ時間 5,980 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 87 ms
8,320 KB
testcase_05 AC 87 ms
8,192 KB
testcase_06 AC 95 ms
8,192 KB
testcase_07 AC 114 ms
8,192 KB
testcase_08 AC 116 ms
8,320 KB
testcase_09 AC 112 ms
8,192 KB
testcase_10 AC 116 ms
8,320 KB
testcase_11 AC 49 ms
5,248 KB
testcase_12 AC 81 ms
7,296 KB
testcase_13 AC 20 ms
5,248 KB
testcase_14 AC 39 ms
5,248 KB
testcase_15 AC 82 ms
6,656 KB
testcase_16 AC 32 ms
5,760 KB
testcase_17 AC 20 ms
5,248 KB
testcase_18 AC 53 ms
6,528 KB
testcase_19 AC 73 ms
5,760 KB
testcase_20 AC 50 ms
5,248 KB
testcase_21 AC 78 ms
6,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// Source: https://usaco.guide/general/io

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

int main() {
	ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
	int times = 1;
	while(times--){
		ll n, m; cin >> n >> m;
		set <ll> s;
		for(int i = 0 ; i < n ; i++){
			ll temp; cin >> temp;
			s.insert(temp);
		}

		ll answer = 0;
		for(int i = 0 ; i < m ; i++){
			ll f, b, w; cin >> f >> b >> w;
			auto e = s.lower_bound(f);
			auto r = e;
			if(e == s.end()) r--;
			if(e != s.begin()) e--;
			if(*r == f) answer += w;
			else answer += max(b, max(w - abs(f - *r), w - abs(f - *e)));
		}

		cout << answer << endl;
	}
}
0