結果

問題 No.860 買い物
ユーザー tempura_pptempura_pp
提出日時 2019-08-09 22:21:33
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 84 ms / 1,000 ms
コード長 896 bytes
コンパイル時間 937 ms
コンパイル使用メモリ 94,384 KB
実行使用メモリ 5,012 KB
最終ジャッジ日時 2023-09-26 18:22:19
合計ジャッジ時間 3,048 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 2 ms
4,376 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 4 ms
4,380 KB
testcase_07 AC 78 ms
5,012 KB
testcase_08 AC 78 ms
4,960 KB
testcase_09 AC 77 ms
4,904 KB
testcase_10 AC 78 ms
4,968 KB
testcase_11 AC 58 ms
4,896 KB
testcase_12 AC 59 ms
4,952 KB
testcase_13 AC 77 ms
4,920 KB
testcase_14 AC 77 ms
4,924 KB
testcase_15 AC 31 ms
4,972 KB
testcase_16 AC 58 ms
4,952 KB
testcase_17 AC 84 ms
4,916 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