結果

問題 No.561 東京と京都
ユーザー fushime2fushime2
提出日時 2017-12-30 01:30:15
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 599 bytes
コンパイル時間 1,415 ms
コンパイル使用メモリ 159,680 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-21 11:48:26
合計ジャッジ時間 2,214 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 17
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:23:38: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   23 |     for (int i = 0; i < N; i++) scanf("%d%d", T + i, K + i);
      |                                 ~~~~~^~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;

using ll = long long;
#define mset(a,x) memset(a,x,sizeof(a))

int N, D;
int T[110], K[110];

ll dp[110][2];
ll rec(int i, int d) {
    ll &r = dp[i][d];
    if (r != -1) return r;
    if (i == N) return r = 0;
    if (d == 0) // tokyo
        return r = max(rec(i + 1, d) + T[i], rec(i + 1, ~d) + K[i] - D);
    else
        return r = max(rec(i + 1, d) + K[i], rec(i + 1, ~d) + T[i] - D);
}

int main() {
    cin >> N >> D;
    for (int i = 0; i < N; i++) scanf("%d%d", T + i, K + i);
    mset(dp, -1);
    cout << rec(0, 0) << endl;
    return 0;
}
0