結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 86 ms
8,192 KB
testcase_05 AC 85 ms
8,192 KB
testcase_06 AC 85 ms
8,064 KB
testcase_07 AC 113 ms
8,320 KB
testcase_08 AC 113 ms
8,192 KB
testcase_09 AC 114 ms
8,192 KB
testcase_10 AC 117 ms
8,192 KB
testcase_11 AC 48 ms
5,376 KB
testcase_12 AC 80 ms
7,040 KB
testcase_13 AC 20 ms
5,376 KB
testcase_14 AC 40 ms
5,376 KB
testcase_15 AC 84 ms
6,784 KB
testcase_16 AC 33 ms
5,888 KB
testcase_17 AC 19 ms
5,376 KB
testcase_18 AC 53 ms
6,656 KB
testcase_19 AC 73 ms
5,888 KB
testcase_20 AC 52 ms
5,376 KB
testcase_21 AC 80 ms
6,272 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