結果

問題 No.860 買い物
ユーザー PachicobuePachicobue
提出日時 2019-08-09 23:07:11
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 79 ms / 1,000 ms
コード長 434 bytes
コンパイル時間 1,994 ms
コンパイル使用メモリ 203,124 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-19 15:34:31
合計ジャッジ時間 3,567 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using ll = long long;
int main()
{
    int N;
    std::cin >> N;
    std::vector<ll> C(N), D(N);
    for (int i = 0; i < N; i++) { std::cin >> C[i] >> D[i]; }
    std::vector<ll> dp{0, C[0]};
    for (int i = 1; i < N; i++) { dp[0] = std::min(dp[0] + D[i], dp[1]), dp[1] = std::min(dp[0] + C[i], dp[1] + D[i]); }
    std::cout << dp[1] + std::accumulate(C.begin(), C.end(), 0LL) << std::endl;
    return 0;
}
0