結果

問題 No.1104 オンライン点呼
ユーザー snow39snow39
提出日時 2020-07-03 22:17:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 914 bytes
コンパイル時間 821 ms
コンパイル使用メモリ 94,700 KB
実行使用メモリ 5,576 KB
最終ジャッジ日時 2023-10-17 04:17:37
合計ジャッジ時間 2,417 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 27 ms
5,576 KB
testcase_02 AC 25 ms
5,576 KB
testcase_03 AC 20 ms
5,576 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 AC 2 ms
4,348 KB
testcase_07 AC 13 ms
4,520 KB
testcase_08 AC 6 ms
4,348 KB
testcase_09 AC 14 ms
5,576 KB
testcase_10 AC 2 ms
4,348 KB
testcase_11 AC 9 ms
4,348 KB
testcase_12 AC 13 ms
4,520 KB
testcase_13 AC 10 ms
4,348 KB
testcase_14 AC 2 ms
4,348 KB
testcase_15 AC 17 ms
4,784 KB
testcase_16 WA -
testcase_17 AC 12 ms
4,348 KB
testcase_18 AC 15 ms
4,784 KB
testcase_19 AC 21 ms
5,048 KB
testcase_20 AC 23 ms
5,312 KB
testcase_21 AC 23 ms
5,312 KB
testcase_22 AC 19 ms
5,048 KB
testcase_23 AC 16 ms
4,520 KB
testcase_24 AC 8 ms
4,348 KB
testcase_25 AC 2 ms
4,348 KB
testcase_26 AC 2 ms
4,348 KB
testcase_27 AC 2 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <string>
#include <vector>
#include <cmath>
#include <map>
#include <queue>
#include <iomanip>
#include <set>
#include <tuple>
#define mkp make_pair
#define mkt make_tuple
#define rep(i,n) for(int i = 0; i < (n); ++i)
#define all(v) v.begin(),v.end()
using namespace std;
typedef unsigned long long ll;
const ll MOD=1e9+7;
template<class T> void chmin(T &a,const T &b){if(a>b) a=b;}
template<class T> void chmax(T &a,const T &b){if(a<b) a=b;}

const ll INF=1e19;

int main(){
  cin.tie(0);
  ios::sync_with_stdio(false);

  int N;
  ll K;
  cin>>N>>K;
  vector<ll> A(N),B(N);
  rep(i,N) cin>>A[i];
  rep(i,N) cin>>B[i];

  vector<ll> dp(N,INF);
  dp[0]=0;
  for(int i=1;i<N;i++){
    if(i-1>=0) chmin(dp[i],dp[i-1]+A[i-1]+B[i]);
    if(i-2>=0) chmin(dp[i],dp[i-2]+A[i-2]+B[i]+K);
  }

  ll ans=dp[0];
  rep(i,N) chmax(ans,dp[i]);
  cout<<ans<<endl;

  return 0;
}
0