結果

問題 No.844 split game
ユーザー kappybarkappybar
提出日時 2020-04-09 18:27:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,752 bytes
コンパイル時間 2,081 ms
コンパイル使用メモリ 182,116 KB
実行使用メモリ 9,984 KB
最終ジャッジ日時 2024-09-13 15:43:02
合計ジャッジ時間 7,837 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
6,016 KB
testcase_01 AC 40 ms
5,504 KB
testcase_02 AC 134 ms
9,344 KB
testcase_03 AC 87 ms
7,424 KB
testcase_04 AC 43 ms
5,376 KB
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 AC 157 ms
9,856 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 159 ms
9,856 KB
testcase_19 WA -
testcase_20 AC 156 ms
9,856 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 4 ms
6,944 KB
testcase_27 WA -
testcase_28 AC 3 ms
6,944 KB
testcase_29 AC 8 ms
6,944 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 3 ms
6,944 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 17 ms
6,940 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 48 ms
6,940 KB
testcase_39 AC 107 ms
8,832 KB
testcase_40 AC 25 ms
6,944 KB
testcase_41 AC 2 ms
6,940 KB
testcase_42 AC 2 ms
6,940 KB
testcase_43 AC 2 ms
6,944 KB
testcase_44 AC 2 ms
6,944 KB
testcase_45 AC 2 ms
6,940 KB
testcase_46 AC 2 ms
6,944 KB
testcase_47 AC 2 ms
6,940 KB
testcase_48 AC 2 ms
6,940 KB
testcase_49 AC 2 ms
6,940 KB
testcase_50 AC 2 ms
6,944 KB
testcase_51 AC 2 ms
6,940 KB
testcase_52 AC 2 ms
6,944 KB
testcase_53 WA -
testcase_54 AC 2 ms
6,944 KB
testcase_55 AC 2 ms
6,944 KB
testcase_56 AC 2 ms
6,940 KB
testcase_57 AC 2 ms
6,940 KB
testcase_58 AC 1 ms
6,944 KB
testcase_59 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<n;i++)
using namespace std;
using ll =  long long ;
using P = pair<int,int> ;
const ll INF = 1e18;
const int MOD = 1000000007;

int main(){
    int n,m,a;
    cin >> n >> m >> a;
    vector<vector<ll>> section(m,vector<ll>(3,0));
    vector<int> before(m,-1);
    vector<P> dp(m+1);
    rep(i,m){
        ll l,r,p;
        cin >> l >> r >> p;
        --l;
        section[i][0] = r;
        section[i][1] = l;
        section[i][2] = p;
    }
    sort(section.begin(),section.end());
    rep(i,m){
        int l = -1,r = i;
        while(r - l > 1){
            int mid = (l+r)/2;
            if(section[mid][0] <= section[i][1]) l = mid;
            else r = mid;
        }
        before[i] = l;
    }
    dp[0] = P(0,0);
    for(int i=1;i<=m;i++){
        dp[i] = dp[i-1];
        if(before[i-1] == -1){
            ll res = section[i-1][2];
            int c = 2;
            if(section[i-1][1] == 0) --c;
            if(section[i-1][0] == n) --c;
            res -= a * c;
            if(res >= dp[i].first){
                dp[i] = P(res,section[i-1][0]);
            }
        }
        else{
            ll res = dp[before[i-1]+1].first + section[i-1][2];
            int c = 2;
            if(dp[before[i-1]+1].second == section[i-1][1]) --c;
            if(section[i-1][0] == n) --c;
            res -= c * a;
            if(res >= dp[i].first){
                dp[i] = P(res,section[i-1][0]);
            }
        }
    }

    //rep(i,m) cout << section[i][0] << " "  << section[i][1] << " " << section[i][2] << endl;
    //rep(i,m) cout << before[i] << " " << endl;
    //rep(i,m+1) cout << dp[i].first << " " << dp[i].second << endl;
    cout << dp[m].first << endl;
    return 0;
}
0