結果

問題 No.2566 美しい整数列
ユーザー inkyamaninkyaman
提出日時 2024-03-24 13:47:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 334 ms / 2,000 ms
コード長 952 bytes
コンパイル時間 1,426 ms
コンパイル使用メモリ 125,268 KB
実行使用メモリ 22,144 KB
最終ジャッジ日時 2024-09-30 13:49:12
合計ジャッジ時間 9,232 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 323 ms
22,144 KB
testcase_05 AC 334 ms
22,016 KB
testcase_06 AC 206 ms
9,472 KB
testcase_07 AC 215 ms
9,472 KB
testcase_08 AC 210 ms
9,472 KB
testcase_09 AC 216 ms
9,472 KB
testcase_10 AC 215 ms
9,472 KB
testcase_11 AC 235 ms
12,544 KB
testcase_12 AC 240 ms
12,544 KB
testcase_13 AC 238 ms
12,544 KB
testcase_14 AC 237 ms
12,544 KB
testcase_15 AC 239 ms
12,544 KB
testcase_16 AC 267 ms
21,120 KB
testcase_17 AC 286 ms
21,376 KB
testcase_18 AC 256 ms
21,504 KB
testcase_19 AC 162 ms
15,488 KB
testcase_20 AC 220 ms
19,968 KB
testcase_21 AC 243 ms
20,480 KB
testcase_22 AC 149 ms
14,336 KB
testcase_23 AC 191 ms
18,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
#include <queue>
#include <math.h>
#include <cmath>
#include <stack>
#include <map>
#include <set>
#include <numeric>
#include <iomanip>
#include <climits>
#include <functional>
#include <cassert>
#include <tuple>
using namespace std;
using ll = long long;

int N, M;
ll A[200009], B[200009];
ll C[200009];

int main() {
    
    cin >> N >> M;
    ll sum = 0;
    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];
        sum += C[i];
    }

    vector<ll> add(N,0);
    for(int i = 1; i < N; ++i) add[i] = add[i-1]+B[(i-1)%M];
    // for(int i = 0; i < N; ++i) cout << add[i] << endl;

    map<ll, ll> mp;
    for(int i = 0; i < N; ++i) mp[A[i]-add[i]] += C[i];

    ll ans = 1e18;
    for(auto [k, v] : mp) ans = min(ans, sum-v);

    cout << ans << endl;

}
0