結果

問題 No.860 買い物
ユーザー MayimgMayimg
提出日時 2019-08-13 09:10:00
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 26 ms / 1,000 ms
コード長 513 bytes
コンパイル時間 2,310 ms
コンパイル使用メモリ 203,568 KB
実行使用メモリ 4,800 KB
最終ジャッジ日時 2023-10-19 17:00:40
合計ジャッジ時間 3,516 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 AC 2 ms
4,348 KB
testcase_07 AC 24 ms
4,800 KB
testcase_08 AC 24 ms
4,800 KB
testcase_09 AC 24 ms
4,800 KB
testcase_10 AC 24 ms
4,800 KB
testcase_11 AC 20 ms
4,800 KB
testcase_12 AC 19 ms
4,800 KB
testcase_13 AC 24 ms
4,800 KB
testcase_14 AC 24 ms
4,800 KB
testcase_15 AC 14 ms
4,800 KB
testcase_16 AC 20 ms
4,800 KB
testcase_17 AC 26 ms
4,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
using namespace std;
signed main() {
  ios::sync_with_stdio(false); cin.tie(0);
  int n;
  cin >> n;
  long long sum = 0;
  vector<long long> c(n), d(n);
  for (int i = 0; i < n; i++) {
    cin >> c[i] >> d[i];
    sum += c[i] + d[i];
  }
  vector<long long> dp(2);
  dp[0] = -d[0] + c[0];
  dp[1] = -d[0];
  for (int i = 1; i < n; i++) {
    dp[1] = min(dp[1], dp[0] - d[i]);
    dp[0] = min(dp[0], dp[1] + c[i]);
  }
  cout << sum + dp[0] << endl;
	return 0;
}
0