結果
問題 | No.974 最後の日までに |
ユーザー | milanis48663220 |
提出日時 | 2020-06-11 00:41:00 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 700 ms / 2,000 ms |
コード長 | 2,690 bytes |
コンパイル時間 | 1,090 ms |
コンパイル使用メモリ | 94,512 KB |
実行使用メモリ | 30,976 KB |
最終ジャッジ日時 | 2024-06-23 20:56:19 |
合計ジャッジ時間 | 16,839 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 596 ms
30,848 KB |
testcase_01 | AC | 557 ms
30,976 KB |
testcase_02 | AC | 555 ms
30,976 KB |
testcase_03 | AC | 543 ms
30,976 KB |
testcase_04 | AC | 536 ms
30,976 KB |
testcase_05 | AC | 550 ms
30,976 KB |
testcase_06 | AC | 547 ms
30,976 KB |
testcase_07 | AC | 543 ms
30,976 KB |
testcase_08 | AC | 528 ms
30,848 KB |
testcase_09 | AC | 538 ms
30,976 KB |
testcase_10 | AC | 535 ms
30,976 KB |
testcase_11 | AC | 565 ms
30,848 KB |
testcase_12 | AC | 555 ms
30,848 KB |
testcase_13 | AC | 537 ms
30,976 KB |
testcase_14 | AC | 526 ms
30,848 KB |
testcase_15 | AC | 560 ms
30,848 KB |
testcase_16 | AC | 568 ms
30,848 KB |
testcase_17 | AC | 103 ms
5,376 KB |
testcase_18 | AC | 106 ms
5,376 KB |
testcase_19 | AC | 102 ms
5,376 KB |
testcase_20 | AC | 108 ms
5,376 KB |
testcase_21 | AC | 108 ms
5,376 KB |
testcase_22 | AC | 104 ms
5,376 KB |
testcase_23 | AC | 104 ms
5,376 KB |
testcase_24 | AC | 103 ms
5,376 KB |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | AC | 3 ms
5,376 KB |
testcase_27 | AC | 473 ms
23,296 KB |
testcase_28 | AC | 667 ms
30,976 KB |
testcase_29 | AC | 2 ms
5,376 KB |
testcase_30 | AC | 144 ms
5,376 KB |
testcase_31 | AC | 2 ms
5,376 KB |
testcase_32 | AC | 2 ms
5,376 KB |
testcase_33 | AC | 399 ms
20,352 KB |
testcase_34 | AC | 700 ms
30,976 KB |
testcase_35 | AC | 2 ms
5,376 KB |
testcase_36 | AC | 2 ms
5,376 KB |
testcase_37 | AC | 207 ms
5,376 KB |
testcase_38 | AC | 2 ms
5,376 KB |
testcase_39 | AC | 2 ms
5,376 KB |
testcase_40 | AC | 82 ms
5,376 KB |
testcase_41 | AC | 107 ms
5,376 KB |
testcase_42 | AC | 223 ms
5,376 KB |
testcase_43 | AC | 230 ms
5,376 KB |
testcase_44 | AC | 163 ms
5,376 KB |
testcase_45 | AC | 140 ms
5,376 KB |
testcase_46 | AC | 2 ms
5,376 KB |
testcase_47 | AC | 2 ms
5,376 KB |
testcase_48 | AC | 2 ms
5,376 KB |
testcase_49 | AC | 2 ms
5,376 KB |
testcase_50 | AC | 2 ms
5,376 KB |
testcase_51 | AC | 2 ms
5,376 KB |
ソースコード
#include <iostream> #include <algorithm> #include <iomanip> #include <vector> #include <queue> #include <set> #include <map> using namespace std; typedef long long ll; int W; int M; ll a[52], b[52], c[52]; map<ll, ll> mpl, mpr; vector<int> buf; bool left_half; void dfs(int c1, int c2){ if(c1 == 0 && c2 == 0){ int cur = (left_half ? 0 : M); ll money = 0, likes = 0; for(int i : buf) { if(i == 1){ money += a[cur]; }else{ likes += b[cur+1]; money -= c[cur+1]; } cur += i; } if(left_half) { if(mpl.count(money) > 0){ mpl[money] = max(mpl[money], likes); }else{ mpl[money] = likes; } }else{ if(mpr.count(money) > 0){ mpr[money] = max(mpr[money], likes); }else{ mpr[money] = likes; } } } if(c1 != 0){ buf.push_back(1); dfs(c1-1, c2); buf.pop_back(); } if(c2 != 0){ buf.push_back(2); dfs(c1, c2-1); buf.pop_back(); } } int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; cin >> W; for(int i = 0; i < W; i++) cin >> a[i] >> b[i] >> c[i]; if(W == 1){ cout << 0 << endl; return 0; } M = W/2; left_half = true; for(int i = 0; 2*i <= M; i++){ dfs(M-2*i, i); } left_half = false; for(int i = 0; 2*i <= W-M; i++){ dfs(W-M-2*i, i); } auto p = mpr.end(); ll cur_max = 0; while(true){ p--; cur_max = max(cur_max, p->second); mpr[p->first] = cur_max; if(p == mpr.begin()) break; } ll ans = 0; for(auto i : mpl){ ll money = i.first; ll likes = i.second; auto p = mpr.lower_bound(-money); if(p == mpr.end()) continue; ans = max(ans, likes+p->second); } // 境目でデートする M++; mpl.clear(); mpr.clear(); left_half = true; for(int i = 0; 2*i <= M; i++){ dfs(M-2*i, i); } left_half = false; for(int i = 0; 2*i <= W-M; i++){ dfs(W-M-2*i, i); } p = mpr.end(); cur_max = 0; while(true){ p--; cur_max = max(cur_max, p->second); mpr[p->first] = cur_max; if(p == mpr.begin()) break; } for(auto i : mpl){ ll money = i.first; ll likes = i.second; auto p = mpr.lower_bound(-money); if(p == mpr.end()) continue; ans = max(ans, likes+p->second); } cout << ans << endl; }