結果

問題 No.1104 オンライン点呼
ユーザー coco18000coco18000
提出日時 2020-07-04 22:33:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 827 bytes
コンパイル時間 1,794 ms
コンパイル使用メモリ 166,412 KB
実行使用メモリ 5,888 KB
最終ジャッジ日時 2024-09-19 14:12:25
合計ジャッジ時間 3,796 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 22 ms
5,888 KB
testcase_02 AC 20 ms
5,888 KB
testcase_03 AC 17 ms
5,760 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 10 ms
5,376 KB
testcase_08 AC 5 ms
5,376 KB
testcase_09 AC 12 ms
5,632 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 8 ms
5,376 KB
testcase_12 AC 10 ms
5,376 KB
testcase_13 AC 9 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 14 ms
5,376 KB
testcase_16 WA -
testcase_17 AC 10 ms
5,376 KB
testcase_18 AC 12 ms
5,376 KB
testcase_19 AC 17 ms
5,376 KB
testcase_20 AC 18 ms
5,376 KB
testcase_21 AC 18 ms
5,504 KB
testcase_22 AC 16 ms
5,376 KB
testcase_23 AC 13 ms
5,376 KB
testcase_24 AC 7 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

typedef long long int ll;
typedef pair<ll, ll> pll;

#define FOR(i, n, m) for(ll (i)=(m);(i)<(n);++(i))
#define REP(i, n) FOR(i,n,0)
#define OF64 std::setprecision(10)

const ll MOD = 1000000007;
const ll INF = (ll) 1e15;

ll A[100005];
ll B[100005];

//! 社員iの声がサーバーにアップされる時間
ll C[100005];

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    ll N, K;
    cin >> N >> K;
    REP(i, N) {
        cin >> A[i];
    }
    REP(i, N) {
        cin >> B[i];
    }
    C[0] = A[0];
    C[1] = A[0] + B[1] + A[1];
    FOR(i, N, 2) {
        C[i] = std::min(C[i - 1] + A[i] + B[i], C[i - 2] + A[i] + B[i] + K);
    }

    ll ans = 0;
    REP(i, N) {
        ans = std::max(ans, C[i] - A[i]);
    }

    cout << ans << endl;
    return 0;
}
0