結果

問題 No.561 東京と京都
ユーザー NoiriNoiri
提出日時 2019-09-02 02:42:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 622 bytes
コンパイル時間 1,516 ms
コンパイル使用メモリ 168,080 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-07 14:02:01
合計ジャッジ時間 2,232 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for(int i = 0; i < (int)(n); i++)
#define all(x) (x).begin(),(x).end()
#define rall(x) (x).rbegin(),(x).rend()
#define UNIQUE(v) v.erase( unique(v.begin(), v.end()), v.end() );
using namespace std;
using ll = long long;

int dp[101][2];

int main(){
    int n, d;
    cin >> n >> d;
    vector<int> v(n), u(n);
    rep(i, n) cin >> v[i] >> u[i];

    dp[0][1] = -d;

    rep(i, n){
        dp[i+1][0] = max({dp[i+1][0], dp[i][0]+v[i], dp[i][1]+v[i]-d});
        dp[i+1][1] = max({dp[i+1][1], dp[i][1]+u[i], dp[i][0]+u[i]-d});
    }

    cout << max(dp[n][0], dp[n][1]) << endl;
}
0