結果
問題 | No.860 買い物 |
ユーザー | stone_725 |
提出日時 | 2019-08-09 21:49:59 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 869 bytes |
コンパイル時間 | 929 ms |
コンパイル使用メモリ | 128,508 KB |
実行使用メモリ | 19,584 KB |
最終ジャッジ日時 | 2024-05-07 19:18:31 |
合計ジャッジ時間 | 3,819 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,752 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 40 ms
5,376 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
ソースコード
#include <iostream> #include <cstring> #include <vector> #include <utility> #include <algorithm> using namespace std; int n; vector<pair<long long, long long>> item; vector<long long> sum; long long dp[100001]; long long dfs(int id){ if(id == n){ return 0; } if(~dp[id]) return dp[id]; long long res = 1ll << 62, minItem = 1ll << 62; for(int i = id + 1; i <= n; i++){ minItem = min(minItem, item[i - 1].first); res = min(res, sum[i] - sum[id] - item[id].second + minItem + dfs(i)); } return dp[id] = res; } int main(){ cin >> n; item.resize(n); sum.resize(n + 1); for(auto&& i : item){ cin >> i.first >> i.second; } for(int i = 1; i <= n; i++){ sum[i] = sum[i - 1] + item[i - 1].first + item[i - 1].second; } memset(dp, -1, sizeof dp); cout << dfs(0) << "\n"; }