結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 48 ms
6,400 KB
testcase_05 AC 48 ms
6,528 KB
testcase_06 AC 48 ms
6,400 KB
testcase_07 AC 59 ms
6,400 KB
testcase_08 AC 60 ms
6,400 KB
testcase_09 AC 59 ms
6,400 KB
testcase_10 AC 60 ms
6,272 KB
testcase_11 AC 31 ms
5,376 KB
testcase_12 AC 43 ms
5,504 KB
testcase_13 AC 12 ms
5,376 KB
testcase_14 AC 25 ms
5,376 KB
testcase_15 AC 47 ms
5,888 KB
testcase_16 AC 17 ms
5,376 KB
testcase_17 AC 15 ms
5,376 KB
testcase_18 AC 28 ms
5,376 KB
testcase_19 AC 45 ms
5,504 KB
testcase_20 AC 43 ms
5,760 KB
testcase_21 AC 47 ms
5,760 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