結果

問題 No.2549 Paint Eggs
ユーザー FplusFplusFFplusFplusF
提出日時 2023-11-25 14:10:01
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,357 bytes
コンパイル時間 3,351 ms
コンパイル使用メモリ 255,824 KB
実行使用メモリ 24,472 KB
最終ジャッジ日時 2024-09-26 10:40:08
合計ジャッジ時間 16,881 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 276 ms
21,760 KB
testcase_11 AC 227 ms
23,424 KB
testcase_12 AC 282 ms
13,852 KB
testcase_13 AC 301 ms
21,376 KB
testcase_14 AC 144 ms
20,808 KB
testcase_15 AC 23 ms
5,376 KB
testcase_16 AC 249 ms
15,616 KB
testcase_17 AC 228 ms
12,600 KB
testcase_18 AC 159 ms
9,472 KB
testcase_19 AC 228 ms
14,208 KB
testcase_20 AC 388 ms
24,380 KB
testcase_21 AC 386 ms
24,320 KB
testcase_22 AC 425 ms
24,448 KB
testcase_23 AC 416 ms
24,448 KB
testcase_24 AC 475 ms
24,320 KB
testcase_25 AC 295 ms
24,384 KB
testcase_26 AC 296 ms
24,404 KB
testcase_27 AC 331 ms
24,304 KB
testcase_28 AC 427 ms
24,424 KB
testcase_29 AC 382 ms
24,320 KB
testcase_30 AC 453 ms
24,268 KB
testcase_31 AC 350 ms
24,320 KB
testcase_32 AC 400 ms
24,448 KB
testcase_33 AC 364 ms
24,372 KB
testcase_34 AC 322 ms
24,416 KB
testcase_35 AC 453 ms
24,448 KB
testcase_36 AC 428 ms
24,472 KB
testcase_37 AC 386 ms
24,440 KB
testcase_38 AC 333 ms
24,448 KB
testcase_39 WA -
testcase_40 AC 447 ms
24,448 KB
testcase_41 AC 475 ms
24,448 KB
testcase_42 AC 480 ms
24,320 KB
testcase_43 AC 479 ms
24,324 KB
testcase_44 AC 477 ms
24,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/lazysegtree>
using namespace std;
using ll=long long;
using pll=pair<ll,ll>;
using tll=tuple<ll,ll,ll>;
using ld=long double;
const ll INF=(1ll<<60);
#define rep(i,n) for(ll i=0;i<(ll)(n);i++)
#define all(v) v.begin(),v.end()
template<class T> void chmin(T &a,T b){
    if(a>b){
        a=b;
    }
}
template<class T> void chmax(T &a,T b){
    if(a<b){
        a=b;
    }
}
struct s{
    ll v,a;
};
s op(s a,s b){
    if(a.v<=b.v) return a;
    return b;
}
s e(){
    return {INF,INF};
}
s mapping(ll f,s x){
    if(x.a!=INF) x.v+=x.a*f;
    return x;
}
ll composition(ll f,ll g){
    return f+g;
}
ll id(){
    return 0;
}
int main(){
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    ll n,m,k;
    cin >> n >> m >> k;
    vector<vector<ll>> v(m);
    vector<ll> c(n);
    rep(i,n){
        cin >> c[i];
        c[i]--;
    }
    vector<ll> a(m);
    rep(i,m) cin >> a[i];
    atcoder::lazy_segtree<s,op,e,ll,mapping,composition,id> seg(m);
    rep(i,m) seg.set(i,{0,a[i]});
    rep(i,k){
        seg.apply(0,c[i],1);
        seg.apply(c[i]+1,m,1);
    }
    ll ans=seg.all_prod().v;
    for(ll i=k;i<n;i++){
        seg.apply(0,c[i-k],-1);
        seg.apply(c[i-k]+1,m,-1);
        seg.apply(0,c[i],1);
        seg.apply(c[i]+1,m,1);
        chmin(ans,seg.all_prod().v);
    }
    cout << ans << '\n';
}
0