結果

問題 No.860 買い物
ユーザー tempura_pptempura_pp
提出日時 2019-08-09 22:01:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 941 bytes
コンパイル時間 925 ms
コンパイル使用メモリ 95,532 KB
実行使用メモリ 5,164 KB
最終ジャッジ日時 2023-09-26 17:53:52
合計ジャッジ時間 2,652 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 WA -
testcase_04 AC 1 ms
4,376 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 4 ms
4,376 KB
testcase_07 AC 77 ms
4,968 KB
testcase_08 AC 77 ms
5,016 KB
testcase_09 AC 77 ms
4,964 KB
testcase_10 AC 77 ms
5,164 KB
testcase_11 AC 58 ms
4,876 KB
testcase_12 AC 58 ms
4,892 KB
testcase_13 AC 77 ms
4,896 KB
testcase_14 AC 77 ms
4,900 KB
testcase_15 AC 31 ms
4,872 KB
testcase_16 AC 57 ms
5,080 KB
testcase_17 AC 83 ms
5,044 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];
    ll mi = longinf;
    REP(i,1,n){
        ll ndp[2];
        ndp[0]=min({dp[0]+x[i]-y[i],dp[1]+x[i]});
        mi=min(ndp[0],mi);
        ndp[1]=min(dp[1],dp[0]-y[i]);
        dp[0]=min(dp[0],ndp[0]);
        dp[1]=ndp[1];
    }
    cout<<ans+mi<<endl;
    return 0;
}
0