結果

問題 No.860 買い物
ユーザー tempura_pptempura_pp
提出日時 2019-08-09 22:01:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 941 bytes
コンパイル時間 713 ms
コンパイル使用メモリ 96,640 KB
実行使用メモリ 6,940 KB
最終ジャッジ日時 2024-07-19 11:50:54
合計ジャッジ時間 2,355 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 4 ms
5,376 KB
testcase_07 AC 72 ms
5,376 KB
testcase_08 AC 75 ms
5,376 KB
testcase_09 AC 70 ms
5,376 KB
testcase_10 AC 70 ms
5,376 KB
testcase_11 AC 54 ms
5,376 KB
testcase_12 AC 54 ms
5,376 KB
testcase_13 AC 71 ms
5,376 KB
testcase_14 AC 75 ms
5,376 KB
testcase_15 AC 29 ms
5,376 KB
testcase_16 AC 53 ms
5,376 KB
testcase_17 AC 76 ms
5,376 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