結果
問題 | No.2408 Lakes and Fish |
ユーザー | vjudge1 |
提出日時 | 2024-05-02 00:42:31 |
言語 | C++23(gcc13) (gcc 13.2.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,175 bytes |
コンパイル時間 | 3,541 ms |
コンパイル使用メモリ | 126,556 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-02 00:42:42 |
合計ジャッジ時間 | 6,674 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
ソースコード
#include <algorithm> #include <iostream> #include <iomanip> #include <cstring> #include <climits> #include <vector> #include <cmath> #include <set> #define ll long long using namespace std; int main() { int n, m; cin >> n >> m; vector<int> pohon(n); for (int i = 0; i < n; i++) cin >> pohon[i]; vector< pair<int, int> > ikan(m); int score = 0; for (int i = 0; i < m; i++) { int f, b, w; cin >> f >> b >> w; int ansdist = 1e9 + 7; int l = 0, r = n-1; while (l <= r) { int mid = l + (r - l) / 2; int dist = pohon[mid] - f; if (abs(dist) <= ansdist) ansdist = abs(dist); if (dist == 0) { ansdist = 0; break; } else if (dist < 0) { l = mid + 1; } else if (dist > 0) { r = mid - 1; } } int profit = w - b; if (profit > ansdist) { score += (w - ansdist); } else score += b; } cout << score << endl; return 0; }