結果

問題 No.2408 Lakes and Fish
ユーザー vjudge1vjudge1
提出日時 2024-05-01 11:44:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 1,414 bytes
コンパイル時間 2,458 ms
コンパイル使用メモリ 206,572 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-21 15:56:06
合計ジャッジ時間 5,293 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 47 ms
6,820 KB
testcase_05 AC 46 ms
6,820 KB
testcase_06 AC 46 ms
6,820 KB
testcase_07 AC 58 ms
6,820 KB
testcase_08 AC 57 ms
6,820 KB
testcase_09 AC 58 ms
6,816 KB
testcase_10 AC 58 ms
6,820 KB
testcase_11 AC 31 ms
6,816 KB
testcase_12 AC 41 ms
6,816 KB
testcase_13 AC 12 ms
6,816 KB
testcase_14 AC 24 ms
6,820 KB
testcase_15 AC 48 ms
6,816 KB
testcase_16 AC 17 ms
6,820 KB
testcase_17 AC 14 ms
6,816 KB
testcase_18 AC 28 ms
6,816 KB
testcase_19 AC 44 ms
6,816 KB
testcase_20 AC 42 ms
6,820 KB
testcase_21 AC 46 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define nah_id_win ios_base::sync_with_stdio(0); cin.tie(0)
#define ull unsigned long long
#define int long long
#define pb push_back
#define pob pop_back
#define pf push_front
#define pof pop_front
#define fi first
#define se second
#define all(x) (x).begin(), (x).end()
using namespace std;
const int MOD = 1e9 + 7;

void with_this_treasure_i_summon(string name){
	freopen((name + ".in").c_str(), "r", stdin); 
	freopen((name + ".out").c_str(), "w", stdout);
}

signed main(){
	nah_id_win;
	int n, m; cin >> n >> m;
	vector<int> l(n); 
	for (auto &x : l){
		cin >> x;
	}
	
	vector<pair<int, pair<int, int>>> ikan(m);
	for (auto &[f, bw] : ikan){
		int b, w; cin >> f >> b >> w;
		bw = {b, w};
	}	
	
	int ans = 0; int cost = 0;
	for (auto &[f, bw] : ikan){
		//cout << "ikan-----------------\n";
		//cout << "f " << f << "\n";
		auto it1 = upper_bound(all(l), f);
		
		
		int shortest = 1e18;
		if (it1 != l.end()){
			//cout << "kekanan " << *it1 - f << "\n";
			shortest = min(shortest, *it1 - f);
		}
		if (it1 != l.begin()){
			auto it2 = prev(it1);
			//cout << "kekiri " << f - *it2 << "\n";
			shortest = min(shortest, f - *it2);
		}
		
		//cout << "bedanya " << bw.se - bw.fi << "\n";
		
		if (shortest <= (bw.se - bw.fi)){
			//cout << "gelap\n";
			ans += bw.se;
			cost += shortest;
		}
		else{
			//cout << "terang\n";
			ans += bw.fi;
		}
	}	
	
	cout << ans - cost << "\n";
}
0