結果
問題 | No.844 split game |
ユーザー | Shibuyap |
提出日時 | 2020-07-31 05:17:50 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,067 bytes |
コンパイル時間 | 2,294 ms |
コンパイル使用メモリ | 209,068 KB |
実行使用メモリ | 11,648 KB |
最終ジャッジ日時 | 2024-07-05 16:22:21 |
合計ジャッジ時間 | 6,622 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
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 | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | AC | 15 ms
8,576 KB |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | AC | 35 ms
9,148 KB |
testcase_39 | AC | 66 ms
10,200 KB |
testcase_40 | AC | 22 ms
9,000 KB |
testcase_41 | WA | - |
testcase_42 | AC | 5 ms
7,980 KB |
testcase_43 | AC | 4 ms
8,188 KB |
testcase_44 | AC | 5 ms
8,184 KB |
testcase_45 | WA | - |
testcase_46 | AC | 5 ms
7,984 KB |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | AC | 4 ms
8,084 KB |
testcase_56 | AC | 3 ms
8,064 KB |
testcase_57 | AC | 4 ms
7,996 KB |
testcase_58 | AC | 5 ms
8,140 KB |
testcase_59 | AC | 5 ms
8,000 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i,n) for(int i = 0; i < (n); ++i) #define srep(i,s,t) for (int i = s; i < t; ++i) #define drep(i,n) for(int i = (n)-1; i >= 0; --i) using namespace std; typedef long long int ll; typedef pair<int,ll> P; #define yn {puts("Yes");}else{puts("No");} #define MAX_N 200005 vector<P> G[MAX_N]; int main() { ll n, m, A; cin >> n >> m >> A; vector<pair<P,ll>> v; rep(i,m){ int l, r, p; cin >> l >> r >> p; G[l].push_back(P(r,p)); } rep(i,MAX_N) sort(G[i].begin(), G[i].end()); ll dp[n+1] = {}; srep(i,1,n) dp[i] = -A; srep(j,1,n+1){ dp[j] = max(dp[j-1], dp[j]); rep(i,G[j].size()){ int l = j; int r = G[j][i].first; ll p = G[j][i].second; if(r == n){ dp[r] = max(dp[r], dp[l-1] + p); }else{ dp[r] = max(dp[r], dp[l-1] + p - A); } } } ll ans = 0; rep(i,n+1) ans = max(ans, dp[i]); cout << ans << endl; return 0; }