結果
問題 | No.2408 Lakes and Fish |
ユーザー | vjudge1 |
提出日時 | 2024-05-01 22:51:54 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 62 ms / 2,000 ms |
コード長 | 1,106 bytes |
コンパイル時間 | 2,152 ms |
コンパイル使用メモリ | 203,344 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-05-01 22:51:59 |
合計ジャッジ時間 | 4,162 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 45 ms
6,944 KB |
testcase_05 | AC | 46 ms
6,940 KB |
testcase_06 | AC | 46 ms
6,940 KB |
testcase_07 | AC | 60 ms
6,940 KB |
testcase_08 | AC | 61 ms
6,940 KB |
testcase_09 | AC | 62 ms
6,944 KB |
testcase_10 | AC | 62 ms
6,940 KB |
testcase_11 | AC | 33 ms
6,940 KB |
testcase_12 | AC | 43 ms
6,940 KB |
testcase_13 | AC | 12 ms
6,940 KB |
testcase_14 | AC | 24 ms
6,940 KB |
testcase_15 | AC | 46 ms
6,944 KB |
testcase_16 | AC | 16 ms
6,940 KB |
testcase_17 | AC | 13 ms
6,944 KB |
testcase_18 | AC | 27 ms
6,940 KB |
testcase_19 | AC | 45 ms
6,944 KB |
testcase_20 | AC | 41 ms
6,940 KB |
testcase_21 | AC | 44 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> #include <cctype> using namespace std; #define fi first #define se second #define int long long #define all(v) v.begin(), v.end() #define pb push_back #define rep(i, a, b) for (int i = a; i <= b; i++) //iota(first, last, 1); typedef long long ll; typedef unsigned long long ull; typedef pair<ll, ll> ii; typedef pair<string, ii> sii; typedef pair<int, ii> iii; const int INF = 3e18; const long double EPS = 10e-9; const ll MOD = 1e9+7; signed main() { ios_base::sync_with_stdio(0); cin.tie(); cout.tie(); // freopen("input.txt", "r", stdin); // freopen("output.txt", "w", stdout); int n, m; cin >> n >> m; vector<int> l; for (int i=1; i<=n; i++) { int a; cin >> a; l.pb(a); } int ans = 0; for (int i=1; i<=m; i++) { int f, b, w; cin >> f >> b >> w; int x = b; auto itr = lower_bound(l.begin(), l.end(), f); if (itr != l.end()) { x = max(x, w - abs(f - *itr)); // c << *itr << " " << f << '\n'; } if (itr != l.begin()) { x = max(x, w - abs(f - *(--itr))); } // cout << *itr << " " << f << '\n'; ans += x; } cout << ans; return 0; }