結果

問題 No.2566 美しい整数列
ユーザー yansi819yansi819
提出日時 2024-04-05 08:52:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 307 ms / 2,000 ms
コード長 700 bytes
コンパイル時間 4,918 ms
コンパイル使用メモリ 267,912 KB
実行使用メモリ 22,016 KB
最終ジャッジ日時 2024-10-01 00:57:34
合計ジャッジ時間 10,022 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 292 ms
22,016 KB
testcase_05 AC 307 ms
22,016 KB
testcase_06 AC 181 ms
9,600 KB
testcase_07 AC 193 ms
9,600 KB
testcase_08 AC 183 ms
9,600 KB
testcase_09 AC 190 ms
9,600 KB
testcase_10 AC 189 ms
9,600 KB
testcase_11 AC 205 ms
12,544 KB
testcase_12 AC 209 ms
12,544 KB
testcase_13 AC 206 ms
12,544 KB
testcase_14 AC 210 ms
12,544 KB
testcase_15 AC 206 ms
12,544 KB
testcase_16 AC 228 ms
21,248 KB
testcase_17 AC 242 ms
21,376 KB
testcase_18 AC 251 ms
21,632 KB
testcase_19 AC 167 ms
15,488 KB
testcase_20 AC 225 ms
20,096 KB
testcase_21 AC 241 ms
20,480 KB
testcase_22 AC 150 ms
14,336 KB
testcase_23 AC 194 ms
18,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;
using ld = long double;
using mint = modint998244353;

int main() {
  int N, M; cin >> N >> M;
  vector<ll> A(N), B(M), C(N), sum(N);
  for (int i = 0; i < N; i++) cin >> A[i];
  for (int i = 0; i < M; i++) cin >> B[i];
  for (int i = 0; i < N; i++) cin >> C[i];
  for (int i = 0; i < N - 1; i++) sum[i + 1] = sum[i] + B[i % M];
  ll cost_all = 0;
  for (int i = 0; i < N; i++) cost_all += C[i];
  map<ll, ll> mp;
  for (int i = 0; i < N; i++) mp[A[i] - sum[i]] += C[i];
  ll ans = cost_all;
  for (auto p: mp) ans = min(ans, cost_all - p.second);
  cout << ans << endl;
  return 0;
}
0