結果
問題 | No.860 買い物 |
ユーザー |
![]() |
提出日時 | 2019-08-09 22:21:33 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 86 ms / 1,000 ms |
コード長 | 896 bytes |
コンパイル時間 | 947 ms |
コンパイル使用メモリ | 96,416 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-19 12:19:23 |
合計ジャッジ時間 | 2,623 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 15 |
ソースコード
#include<iostream>#include<string>#include<algorithm>#include<vector>#include<iomanip>#include<math.h>#include<complex>#include<queue>#include<deque>#include<stack>#include<map>#include<set>#include<bitset>#include<functional>#include<assert.h>#include<numeric>using namespace std;#define REP(i,m,n) for(int i=(int)(m) ; i < (int) (n) ; ++i )#define rep(i,n) REP(i,0,n)using ll = long long;const int inf=1e9+7;const ll longinf=1LL<<60 ;const ll mod=1e9+7 ;int main(){int n;cin>>n;ll x[n],y[n];ll ans = 0;rep(i,n){cin>>x[i]>>y[i];ans+=x[i]+y[i];}ll dp[2];dp[0]=x[0]-y[0];dp[1]=-y[0];REP(i,1,n){ll ndp[2];ndp[0]=min({dp[0]+x[i]-y[i],dp[1]+x[i]});ndp[1]=min(dp[1],dp[0]-y[i]);dp[0]=min(dp[0],ndp[0]);dp[1]=ndp[1];}cout<<ans+dp[0]<<endl;return 0;}