結果

問題 No.2408 Lakes and Fish
ユーザー vjudge1vjudge1
提出日時 2024-05-01 11:26:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 1,306 bytes
コンパイル時間 2,308 ms
コンパイル使用メモリ 202,480 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-01 11:26:31
合計ジャッジ時間 4,701 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 48 ms
6,940 KB
testcase_05 AC 48 ms
6,940 KB
testcase_06 AC 53 ms
6,940 KB
testcase_07 AC 71 ms
6,940 KB
testcase_08 AC 70 ms
6,940 KB
testcase_09 AC 71 ms
6,944 KB
testcase_10 AC 71 ms
6,940 KB
testcase_11 AC 38 ms
6,940 KB
testcase_12 AC 51 ms
6,940 KB
testcase_13 AC 14 ms
6,944 KB
testcase_14 AC 30 ms
6,940 KB
testcase_15 AC 57 ms
6,944 KB
testcase_16 AC 19 ms
6,940 KB
testcase_17 AC 16 ms
6,940 KB
testcase_18 AC 32 ms
6,944 KB
testcase_19 AC 54 ms
6,940 KB
testcase_20 AC 50 ms
6,940 KB
testcase_21 AC 56 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define endl "\n"

const int N = 1e5 + 5;

int n, m;

ll koor[N];

int binserbig ( int y ){
    int l = 1, r = n, rec = -1;
    while ( l <= r ){
        int mid = ( l + r ) / 2;
        if ( koor[mid] <= y ){
            l = mid + 1;
            rec = mid;
        }
        else r = mid - 1;
    }
    return rec;
}

int binsersmall ( int y ){
    int l = 1, r = n, rec = -1;
    while ( l <= r ){
        int mid = ( l + r) / 2;
        if ( koor[mid] >= y ){
            r = mid - 1;
            rec = mid;
        }
        else l = mid + 1;
    }
    return rec;
}

signed main(){
    ios_base::sync_with_stdio(0); cin.tie(0); 

    cin >> n >> m;

    for ( int i = 1; i <= n; i++) cin >> koor[i];

    ll ans = 0;

    for ( int i = 1; i <= m; i++){
        ll k, un, nun; cin >> k >> un >> nun;

        // nun -> dibawah pohon
        
        int idxbigger = binserbig ( k );
        int idxsmaller = binsersmall ( k );

        ll temp = un;

        if ( idxbigger != -1 ){
            temp = max ( nun - abs ( koor[idxbigger] - k), temp);
        }

        if ( idxsmaller != -1 ){
            temp = max ( nun - abs ( koor[idxsmaller] - k), temp);
        }
        
        ans += temp;
    }

    cout << ans << endl;

}
0