結果

問題 No.2566 美しい整数列
ユーザー Tatsu_mrTatsu_mr
提出日時 2024-09-18 01:33:43
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 364 ms / 2,000 ms
コード長 811 bytes
コンパイル時間 3,068 ms
コンパイル使用メモリ 257,264 KB
実行使用メモリ 31,360 KB
最終ジャッジ日時 2024-09-18 01:33:55
合計ジャッジ時間 12,299 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 342 ms
31,360 KB
testcase_05 AC 364 ms
31,232 KB
testcase_06 AC 211 ms
10,956 KB
testcase_07 AC 220 ms
10,700 KB
testcase_08 AC 214 ms
10,824 KB
testcase_09 AC 236 ms
10,824 KB
testcase_10 AC 220 ms
10,820 KB
testcase_11 AC 256 ms
15,872 KB
testcase_12 AC 259 ms
15,616 KB
testcase_13 AC 255 ms
15,848 KB
testcase_14 AC 280 ms
15,744 KB
testcase_15 AC 253 ms
15,744 KB
testcase_16 AC 308 ms
30,464 KB
testcase_17 AC 330 ms
30,720 KB
testcase_18 AC 363 ms
30,848 KB
testcase_19 AC 225 ms
21,632 KB
testcase_20 AC 302 ms
28,928 KB
testcase_21 AC 330 ms
29,440 KB
testcase_22 AC 213 ms
19,968 KB
testcase_23 AC 257 ms
26,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

using lint = long long;

int main() {
    int n, m;
    cin >> n >> m;
    vector<lint> a(n), b(m), c(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];
    }
    vector<lint> v(n);
    v[0] = a[0];
    for (int i = 0; i < n - 1; i++) {
        v[i + 1] = v[i] + b[i % m];
    }
    map<lint, vector<int>> mp;
    for (int i = 0; i < n; i++) {
        mp[a[i] - v[i]].emplace_back(i);
    }
    lint ans = 1e18, sum = accumulate(c.begin(), c.end(), 0LL);
    for (auto [d, vec] : mp) {
        lint cur = sum;
        for (int x : vec) {
            cur -= c[x];
        }
        ans = min(ans, cur);
    }
    cout << ans << endl;
}
0