結果

問題 No.860 買い物
ユーザー tempura_pptempura_pp
提出日時 2019-08-09 22:21:33
言語 C++14
(gcc 12.3.0 + boost 1.83.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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 4 ms
6,944 KB
testcase_07 AC 80 ms
6,944 KB
testcase_08 AC 81 ms
6,944 KB
testcase_09 AC 82 ms
6,940 KB
testcase_10 AC 81 ms
6,940 KB
testcase_11 AC 61 ms
6,944 KB
testcase_12 AC 61 ms
6,940 KB
testcase_13 AC 81 ms
6,940 KB
testcase_14 AC 81 ms
6,940 KB
testcase_15 AC 31 ms
6,940 KB
testcase_16 AC 61 ms
6,944 KB
testcase_17 AC 86 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0