結果

問題 No.2566 美しい整数列
ユーザー tnakao0123tnakao0123
提出日時 2023-12-04 01:03:48
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 890 bytes
コンパイル時間 615 ms
コンパイル使用メモリ 57,852 KB
実行使用メモリ 19,584 KB
最終ジャッジ日時 2024-09-26 22:36:08
合計ジャッジ時間 4,842 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2566.cc:  No.2566 美しい整数列 - yukicoder
 */

#include<cstdio>
#include<map>
#include<algorithm>
 
using namespace std;

/* constant */

const int MAX_N = 200000;

/* typedef */

typedef long long ll;
typedef map<ll,ll> mll;

/* global variables */

int as[MAX_N], bs[MAX_N], cs[MAX_N];
ll bss[MAX_N];

/* subroutines */

/* main */

int main() {
  int n, m;
  scanf("%d%d", &n, &m);
  for (int i = 0; i < n; i++) scanf("%d", as + i);
  for (int i = 0; i < m; i++) scanf("%d", bs + i);
  for (int i = 0; i < n; i++) scanf("%d", cs + i);

  bss[0] = 0;
  for (int i = 0; i + 1 < n; i++) bss[i + 1] = bss[i] + bs[i % m];

  ll csum = 0;
  mll dcs;
  for (int i = 0; i < n; i++) {
    csum += cs[i];
    dcs[bss[i] - as[i]] += cs[i];
  }

  ll maxc = 0;
  for (auto &dc: dcs) maxc = max(maxc, dc.second);

  printf("%lld\n", csum - maxc);

  return 0;
}
0