結果

問題 No.2408 Lakes and Fish
ユーザー vjudge1vjudge1
提出日時 2024-05-02 11:08:49
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,449 bytes
コンパイル時間 7,181 ms
コンパイル使用メモリ 273,156 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-02 11:09:14
合計ジャッジ時間 10,165 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 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 -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int findClosest(int arr[], int n, int target) {
    if (n == 1)
        return arr[0];
    if (target <= arr[0])
        return arr[0];
    if (target >= arr[n - 1])
        return arr[n - 1];
    int i = 0, j = n - 1, mid = 0;
    while (i < j) {
        mid = (i + j) / 2;
        if (arr[mid] == target)
            return arr[mid];
        if (target < arr[mid]) {
            if (mid > 0 && target > arr[mid - 1])
                return (target - arr[mid - 1] >= arr[mid] - target) ? arr[mid] : arr[mid - 1];
            j = mid;
        }
        else {
            if (mid < n - 1 && target < arr[mid + 1])
                return (arr[mid + 1] - target >= target - arr[mid]) ? arr[mid] : arr[mid + 1];
            i = mid + 1; 
        }
    }
    return arr[mid];
}

int main() {
    int n, m, ans = 0;
    cin >> n >> m;
    int arr[n];
    pair<int, int> ikans[m];
    for (int i = 0; i < n; i++) {
        cin >> arr[i];
    }
    for (int i = 0; i < m; i++) {
        cin >> ikans[i].first;
        int pow1, pow2, selisih;
        cin >> pow1 >> pow2;
        selisih = pow2 - pow1;
        ikans[i].second = selisih;
        ikans[i].first = abs(ikans[i].first - findClosest(arr, n, ikans[i].first));
        if (ikans[i].first < selisih) {
            ans += pow2;
            ans -= ikans[i].first;
        }
        else 
            ans += pow1;
    }
    cout << ans;
    return 0;
}
0