結果

問題 No.2549 Paint Eggs
ユーザー FplusFplusFFplusFplusF
提出日時 2023-11-25 13:49:48
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,386 bytes
コンパイル時間 2,978 ms
コンパイル使用メモリ 256,744 KB
実行使用メモリ 30,080 KB
最終ジャッジ日時 2024-09-26 10:33:37
合計ジャッジ時間 17,137 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 3 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 325 ms
26,996 KB
testcase_11 AC 243 ms
28,928 KB
testcase_12 AC 264 ms
16,768 KB
testcase_13 AC 295 ms
26,752 KB
testcase_14 AC 141 ms
25,984 KB
testcase_15 AC 21 ms
5,376 KB
testcase_16 AC 228 ms
18,808 KB
testcase_17 AC 227 ms
15,152 KB
testcase_18 AC 145 ms
11,008 KB
testcase_19 AC 218 ms
17,024 KB
testcase_20 AC 408 ms
29,952 KB
testcase_21 AC 396 ms
29,980 KB
testcase_22 AC 447 ms
30,008 KB
testcase_23 AC 442 ms
29,916 KB
testcase_24 AC 498 ms
29,952 KB
testcase_25 AC 303 ms
29,916 KB
testcase_26 AC 286 ms
29,944 KB
testcase_27 AC 334 ms
30,080 KB
testcase_28 AC 453 ms
29,952 KB
testcase_29 AC 378 ms
29,976 KB
testcase_30 AC 461 ms
29,988 KB
testcase_31 AC 353 ms
29,944 KB
testcase_32 AC 404 ms
30,024 KB
testcase_33 AC 353 ms
29,952 KB
testcase_34 AC 330 ms
30,012 KB
testcase_35 AC 469 ms
29,936 KB
testcase_36 AC 433 ms
29,944 KB
testcase_37 AC 385 ms
30,060 KB
testcase_38 AC 342 ms
30,028 KB
testcase_39 WA -
testcase_40 AC 456 ms
29,988 KB
testcase_41 AC 470 ms
30,080 KB
testcase_42 AC 483 ms
30,080 KB
testcase_43 AC 470 ms
29,952 KB
testcase_44 AC 472 ms
29,980 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,k,a;
};
s op(s a,s b){
    if(a.v<=b.v) return a;
    return b;
}
s e(){
    return {INF,INF,INF};
}
s mapping(ll f,s x){
    s ret=x;
    ret.k+=f;
    ret.v=ret.a*ret.k;
    return ret;
}
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,0,a[i]});
    rep(i,k){
        seg.apply(0,c[i],1);
        seg.apply(c[i]+1,m,1);
    }
    ll ans=seg.prod(0,m).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.prod(0,m).v);
    }
    cout << ans << '\n';
}
0