結果

問題 No.1104 オンライン点呼
ユーザー 👑 NachiaNachia
提出日時 2021-01-09 14:09:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 432 bytes
コンパイル時間 1,985 ms
コンパイル使用メモリ 199,692 KB
実行使用メモリ 5,888 KB
最終ジャッジ日時 2024-04-28 21:29:22
合計ジャッジ時間 4,075 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 81 ms
5,760 KB
testcase_02 AC 75 ms
5,888 KB
testcase_03 AC 54 ms
5,888 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 32 ms
5,376 KB
testcase_08 AC 14 ms
5,376 KB
testcase_09 AC 30 ms
5,760 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 22 ms
5,376 KB
testcase_12 AC 33 ms
5,376 KB
testcase_13 AC 29 ms
5,376 KB
testcase_14 AC 4 ms
5,376 KB
testcase_15 AC 44 ms
5,376 KB
testcase_16 AC 49 ms
5,504 KB
testcase_17 AC 32 ms
5,376 KB
testcase_18 AC 40 ms
5,376 KB
testcase_19 AC 60 ms
5,376 KB
testcase_20 AC 66 ms
5,376 KB
testcase_21 AC 67 ms
5,632 KB
testcase_22 AC 55 ms
5,376 KB
testcase_23 AC 43 ms
5,376 KB
testcase_24 AC 20 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;
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=max(D[N-1],D[max(0,N-2)]);
	cout<<ans<<endl;
	return 0;
}
0