結果

問題 No.1104 オンライン点呼
ユーザー 👑 NachiaNachia
提出日時 2021-01-09 14:05:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 436 bytes
コンパイル時間 2,106 ms
コンパイル使用メモリ 201,192 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-28 21:26:30
合計ジャッジ時間 5,512 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 80 ms
6,940 KB
testcase_02 AC 74 ms
6,940 KB
testcase_03 AC 55 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 31 ms
6,944 KB
testcase_08 AC 13 ms
6,940 KB
testcase_09 AC 30 ms
6,940 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 22 ms
6,944 KB
testcase_12 AC 33 ms
6,944 KB
testcase_13 AC 28 ms
6,940 KB
testcase_14 AC 4 ms
6,940 KB
testcase_15 AC 44 ms
6,944 KB
testcase_16 WA -
testcase_17 AC 32 ms
6,940 KB
testcase_18 AC 41 ms
6,940 KB
testcase_19 AC 60 ms
6,940 KB
testcase_20 AC 66 ms
6,940 KB
testcase_21 AC 65 ms
6,944 KB
testcase_22 AC 54 ms
6,944 KB
testcase_23 AC 45 ms
6,944 KB
testcase_24 AC 20 ms
6,940 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using LL=long long;
using ULL=unsigned long long;
#define rep(i,n) for(int i=0; i<(n); i++)

int N;
LL K;
LL A[100000],B[100000];
LL D[100000];

int main(){
	cin>>N>>K;
	rep(i,N) cin>>A[i];
	rep(i,N) cin>>B[i];
	D[0]=0;
	if(N>=2) D[1]=A[0]+B[1];
	for(int i=2; i<N; i++) D[i]=min(D[i-1]+A[i-1]+B[i],D[i-2]+A[i-2]+B[i]+K);
	LL ans=0; rep(i,N) ans=max(ans,D[i]);
	cout<<ans<<endl;
	return 0;
}
0