結果

問題 No.2408 Lakes and Fish
ユーザー vjudge1vjudge1
提出日時 2024-05-01 11:21:24
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 854 bytes
コンパイル時間 5,392 ms
コンパイル使用メモリ 163,332 KB
実行使用メモリ 8,064 KB
最終ジャッジ日時 2024-05-01 11:21:32
合計ジャッジ時間 6,012 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 92 ms
7,936 KB
testcase_05 AC 93 ms
8,064 KB
testcase_06 AC 91 ms
8,064 KB
testcase_07 AC 143 ms
8,064 KB
testcase_08 AC 139 ms
8,064 KB
testcase_09 AC 144 ms
8,064 KB
testcase_10 AC 140 ms
8,064 KB
testcase_11 AC 51 ms
6,944 KB
testcase_12 AC 92 ms
7,040 KB
testcase_13 AC 22 ms
6,944 KB
testcase_14 AC 42 ms
6,940 KB
testcase_15 AC 97 ms
6,944 KB
testcase_16 AC 37 ms
6,944 KB
testcase_17 AC 20 ms
6,944 KB
testcase_18 AC 61 ms
6,940 KB
testcase_19 AC 81 ms
6,940 KB
testcase_20 AC 47 ms
6,940 KB
testcase_21 AC 86 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define fi first
#define sec second
#define pairz pair<ll,ll>
#define pb push_back
ll tc = 1;
const ll INF = 1e18;
const ll N = 1e6+5;
const ll MOD = 1e9 + 7;
 
// thy will, not mine, be done.

void input(){
	ll n,m; cin >> n >> m;
	set<ll>st;
	for(int i=1;i<=n;i++){
		ll x; cin >> x;
		st.insert(x);
	}
	ll ans = 0;
	for(int i=1;i<=m;i++){
		ll f,b,w; cin >> f >> b >> w;
		auto x = st.lower_bound(f);
		auto y = x;
		if(x == st.end()) --y;
		if(x != st.begin()) --x;
		if(*y == f) ans += w;
		else{
			ans += max({b, w - abs(f - *y), w - abs(f - *x)});
		}
	}
	cout << ans << endl;
}	
 
int main(){
	ios_base::sync_with_stdio(false); cin.tie(nullptr);
   	// cin >> tc;
    while(tc--) input();
}
/*
usahain clean code, jangan ribet2 implementasinya
11 + 14 + 8 = 33
2023 - 2013 2
*/
0