結果

問題 No.2549 Paint Eggs
ユーザー FplusFplusFFplusFplusF
提出日時 2023-11-25 14:04:11
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,895 bytes
コンパイル時間 3,531 ms
コンパイル使用メモリ 262,244 KB
実行使用メモリ 47,048 KB
最終ジャッジ日時 2023-11-25 14:04:38
合計ジャッジ時間 25,978 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 4 ms
6,676 KB
testcase_02 AC 3 ms
6,676 KB
testcase_03 AC 4 ms
6,676 KB
testcase_04 AC 4 ms
6,676 KB
testcase_05 AC 4 ms
6,676 KB
testcase_06 AC 4 ms
6,676 KB
testcase_07 AC 4 ms
6,676 KB
testcase_08 AC 3 ms
6,676 KB
testcase_09 AC 4 ms
6,676 KB
testcase_10 AC 556 ms
42,864 KB
testcase_11 AC 378 ms
45,872 KB
testcase_12 AC 455 ms
25,104 KB
testcase_13 AC 536 ms
42,440 KB
testcase_14 AC 247 ms
41,696 KB
testcase_15 AC 30 ms
6,676 KB
testcase_16 AC 447 ms
27,872 KB
testcase_17 AC 404 ms
23,064 KB
testcase_18 AC 281 ms
15,464 KB
testcase_19 AC 379 ms
25,704 KB
testcase_20 AC 667 ms
47,048 KB
testcase_21 AC 646 ms
47,048 KB
testcase_22 AC 710 ms
47,048 KB
testcase_23 AC 668 ms
47,048 KB
testcase_24 AC 730 ms
47,048 KB
testcase_25 AC 586 ms
47,048 KB
testcase_26 AC 567 ms
47,048 KB
testcase_27 AC 584 ms
47,048 KB
testcase_28 AC 707 ms
47,048 KB
testcase_29 AC 641 ms
47,048 KB
testcase_30 AC 689 ms
47,048 KB
testcase_31 AC 633 ms
47,048 KB
testcase_32 AC 638 ms
47,048 KB
testcase_33 AC 652 ms
47,048 KB
testcase_34 AC 585 ms
47,048 KB
testcase_35 AC 729 ms
47,048 KB
testcase_36 AC 666 ms
47,048 KB
testcase_37 AC 636 ms
47,048 KB
testcase_38 AC 591 ms
47,048 KB
testcase_39 WA -
testcase_40 AC 668 ms
47,048 KB
testcase_41 AC 676 ms
47,048 KB
testcase_42 AC 668 ms
47,048 KB
testcase_43 AC 687 ms
47,048 KB
testcase_44 AC 677 ms
47,048 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{
    __int128 v,k,a;
    
};
bool operator<(s a,s b){
    return a.v<b.v;
}
s op(s a,s b){
    return min(a,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.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,(ll)seg.all_prod().v);
    }
    vector<ll> cnt(m,0);
    rep(i,n) cnt[c[i]]++;
    vector<ll> ord(m);
    rep(i,m) ord[i]=i;
    sort(all(ord),[&](ll i,ll j){
        return cnt[j]<cnt[i];
    });
    ll q=0;
    for(auto &i:ord){
        ll now=0;
        rep(j,k){
            if(c[j]!=i) now+=a[i];
        }
        chmin(ans,now);
        for(ll j=k;j<n;j++){
            if(c[j-k]!=i) now-=a[i];
            if(c[j]!=i) now+=a[i];
        }
        q++;
        if(1000<=q) break;
    }
    cout << ans << '\n';
}
0