結果
| 問題 | No.2408 Lakes and Fish |
| コンテスト | |
| ユーザー |
vjudge1
|
| 提出日時 | 2024-05-01 22:45:05 |
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 232 ms / 2,000 ms |
| コード長 | 534 bytes |
| コンパイル時間 | 3,794 ms |
| コンパイル使用メモリ | 248,656 KB |
| 実行使用メモリ | 8,192 KB |
| 最終ジャッジ日時 | 2024-11-22 06:10:19 |
| 合計ジャッジ時間 | 6,968 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 19 |
ソースコード
#include<bits/stdc++.h>
#include <vector>
using namespace std;
#define ll long long
#define ld long double
const ll M = 1e9+7;
int main() {
ll n,m,ans=0;cin >> m >> n;set <ll> arr;
for (ll i = 0; i < m; i++){ll a;cin >> a;arr.insert(a);}
while(n--){
ll cor,a,b;cin >> cor >> a >> b;
auto it=arr.lower_bound(cor);
if(it==arr.end())it--;
auto _it=it;
if(it!=arr.begin())_it--;
if(*it==cor)ans+=b;
else ans+=max({a,b-abs(cor-*_it),b-abs(*it-cor)});
}cout << ans;
}
vjudge1