結果

問題 No.860 買い物
ユーザー beetbeet
提出日時 2019-08-09 22:52:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 84 ms / 1,000 ms
コード長 689 bytes
コンパイル時間 2,221 ms
コンパイル使用メモリ 200,916 KB
実行使用メモリ 5,588 KB
最終ジャッジ日時 2023-09-26 21:13:07
合計ジャッジ時間 4,257 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,384 KB
testcase_01 AC 2 ms
4,384 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 2 ms
4,384 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 1 ms
4,384 KB
testcase_06 AC 4 ms
4,384 KB
testcase_07 AC 78 ms
5,432 KB
testcase_08 AC 77 ms
5,364 KB
testcase_09 AC 78 ms
5,492 KB
testcase_10 AC 78 ms
5,328 KB
testcase_11 AC 57 ms
5,460 KB
testcase_12 AC 59 ms
5,588 KB
testcase_13 AC 78 ms
5,400 KB
testcase_14 AC 78 ms
5,356 KB
testcase_15 AC 32 ms
5,576 KB
testcase_16 AC 59 ms
5,356 KB
testcase_17 AC 84 ms
5,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using Int = long long;
template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;}
template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;}

//INSERT ABOVE HERE
signed main(){
  Int n;
  cin>>n;
  vector<Int> cs(n),ds(n);
  for(Int i=0;i<n;i++) cin>>cs[i]>>ds[i];
  Int ans=0;
  for(Int i=0;i<n;i++){
    ans+=cs[i];
    ans+=ds[i];
  }
  const Int INF = 1e18;
  vector<Int> dp(n+1,INF);
  dp[0]=0;
  Int res=INF,val=INF;
  for(Int i=0;i<n;i++){
    chmin(res,dp[i]-ds[i]);
    chmin(val,res+cs[i]);
    chmin(dp[i+1],val);
  }
  ans+=*min_element(dp.begin()+1,dp.end());
  cout<<ans<<endl;
  return 0;
}
0