結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
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 WA -
testcase_08 WA -
testcase_09 AC 32 ms
5,760 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
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=min(D[N-1],D[max(0,N-2)]);
	cout<<ans<<endl;
	return 0;
}
0