結果

問題 No.2549 Paint Eggs
ユーザー maeshunmaeshun
提出日時 2023-11-25 17:05:40
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 186 ms / 2,000 ms
コード長 1,231 bytes
コンパイル時間 4,776 ms
コンパイル使用メモリ 265,376 KB
実行使用メモリ 15,296 KB
最終ジャッジ日時 2024-09-26 10:59:40
合計ジャッジ時間 12,747 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 140 ms
13,856 KB
testcase_11 AC 132 ms
13,232 KB
testcase_12 AC 107 ms
10,240 KB
testcase_13 AC 133 ms
13,328 KB
testcase_14 AC 96 ms
11,668 KB
testcase_15 AC 10 ms
6,944 KB
testcase_16 AC 125 ms
10,880 KB
testcase_17 AC 86 ms
9,344 KB
testcase_18 AC 72 ms
7,808 KB
testcase_19 AC 101 ms
9,856 KB
testcase_20 AC 176 ms
15,252 KB
testcase_21 AC 179 ms
15,116 KB
testcase_22 AC 179 ms
15,124 KB
testcase_23 AC 177 ms
15,116 KB
testcase_24 AC 183 ms
15,180 KB
testcase_25 AC 176 ms
15,128 KB
testcase_26 AC 171 ms
15,084 KB
testcase_27 AC 173 ms
15,296 KB
testcase_28 AC 182 ms
15,204 KB
testcase_29 AC 176 ms
15,116 KB
testcase_30 AC 186 ms
15,228 KB
testcase_31 AC 174 ms
15,192 KB
testcase_32 AC 178 ms
15,152 KB
testcase_33 AC 174 ms
15,108 KB
testcase_34 AC 173 ms
15,236 KB
testcase_35 AC 182 ms
15,172 KB
testcase_36 AC 180 ms
15,148 KB
testcase_37 AC 178 ms
15,248 KB
testcase_38 AC 175 ms
15,188 KB
testcase_39 AC 175 ms
15,168 KB
testcase_40 AC 178 ms
15,108 KB
testcase_41 AC 180 ms
15,144 KB
testcase_42 AC 180 ms
15,236 KB
testcase_43 AC 179 ms
15,112 KB
testcase_44 AC 181 ms
15,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
#define rep(i, n) for(int i=0;i<(n);++i)
#define rep1(i, n) for(int i=1;i<=(n);i++)
#define ll long long
using mint = modint998244353;
using P = pair<ll,ll>;
using lb = long double;
using T = tuple<ll, ll, ll>;
#ifdef LOCAL
#  include <debug_print.hpp>
#  define dbg(...) debug_print::multi_print(#__VA_ARGS__, __VA_ARGS__)
#else
#  define dbg(...) (static_cast<void>(0))
#endif

ll op(ll a, ll b){
    return min(a,b);
}

ll e(){
    return 5e18;
}

int main()
{
    int n, m, k;
    cin >> n >> m >> k;
    vector<ll> a(m), c(n);
    rep(i,n) cin >> c[i];
    rep(i,m) cin >> a[i];
    vector<ll> cnt(m);
    rep(i,n) c[i]--;
    vector<ll> sum(n+1);
    rep(i,n) sum[i+1] = sum[i] + a[i];
    ll ans = 5e18;
    ll now = sum[k];
    segtree<ll, op, e> seg(m);
    rep(i,m){
        seg.set(i,a[i]*k);
    }
    rep(i,k){
        seg.set(c[i], seg.get(c[i])-a[c[i]]);
    }
    ans = min(ans, seg.all_prod());
    for(int i=k;i<n;i++){
        int j = i-k;
        seg.set(c[j], seg.get(c[j])+a[c[j]]);
        seg.set(c[i], seg.get(c[i])-a[c[i]]);
        ans = min(ans, seg.all_prod());
    }
    cout << ans << endl;
    return 0;
}
0