結果

問題 No.2566 美しい整数列
ユーザー t98slidert98slider
提出日時 2023-12-02 15:36:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 647 bytes
コンパイル時間 2,468 ms
コンパイル使用メモリ 211,308 KB
実行使用メモリ 20,608 KB
最終ジャッジ日時 2024-09-26 18:59:04
合計ジャッジ時間 5,691 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 132 ms
20,480 KB
testcase_05 AC 152 ms
20,608 KB
testcase_06 AC 65 ms
8,064 KB
testcase_07 AC 66 ms
7,808 KB
testcase_08 AC 63 ms
7,936 KB
testcase_09 AC 66 ms
7,936 KB
testcase_10 AC 67 ms
7,936 KB
testcase_11 AC 90 ms
10,880 KB
testcase_12 AC 91 ms
10,880 KB
testcase_13 AC 90 ms
10,880 KB
testcase_14 AC 88 ms
11,008 KB
testcase_15 AC 89 ms
11,008 KB
testcase_16 AC 119 ms
19,456 KB
testcase_17 AC 126 ms
19,840 KB
testcase_18 AC 128 ms
19,840 KB
testcase_19 AC 84 ms
14,336 KB
testcase_20 AC 121 ms
18,688 KB
testcase_21 AC 124 ms
19,072 KB
testcase_22 AC 81 ms
13,184 KB
testcase_23 AC 101 ms
17,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

template<class T> istream& operator >> (istream& is, vector<T>& vec) {
    for(T& x : vec) is >> x;
    return is;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n, m;
    cin >> n >> m;
    vector<ll> a(n), b(m), c(n);
    cin >> a >> b >> c;
    ll s = 0, ans = 1ll << 60;
    map<ll, ll> mp;
    mp[a[0]] += c[0];
    for(int i = 1; i < n; i++){
        s += b[(i - 1) % m];
        mp[a[i] - s] += c[i];
    }
    s = accumulate(c.begin(), c.end(), 0ll);
    for(auto &&[key, v] : mp){
        ans = min(ans, s - v);
    }
    cout << ans << '\n';
}
0