結果

問題 No.1554 array_and_me
ユーザー momoyuumomoyuu
提出日時 2024-08-07 02:05:38
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,379 bytes
コンパイル時間 1,525 ms
コンパイル使用メモリ 112,676 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2024-08-07 02:05:43
合計ジャッジ時間 5,179 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 29 ms
5,376 KB
testcase_02 AC 29 ms
5,376 KB
testcase_03 AC 30 ms
5,376 KB
testcase_04 AC 29 ms
5,376 KB
testcase_05 AC 30 ms
5,376 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 62 ms
6,016 KB
testcase_12 AC 81 ms
6,016 KB
testcase_13 AC 63 ms
6,016 KB
testcase_14 AC 63 ms
6,144 KB
testcase_15 AC 62 ms
5,888 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>

using namespace std;
using ll = long long;

#include<atcoder/modint>
using mint = atcoder::modint998244353;

void solve(){
    ll n,k;
    cin>>n>>k;
    vector<ll> a(n);
    for(int i = 0;i<n;i++) cin>>a[i];
    ll sum = 0;
    for(int i = 0;i<n;i++) sum += a[i];
    vector<ll> use(n),res(n);
    for(int i = 0;i<n;i++) {
        use[i] = (a[i]*k) / sum;
        res[i] = (a[i]*k) % sum;
    }
    vector<int> idx(n);
    for(int i = 0;i<n;i++) idx[i] = i;
    sort(idx.begin(),idx.end(),[&](int i,int j){
        return a[i] > a[j];
    });
    ll now = 0;
    for(int i = 0;i<n;i++) now += use[i];
    now = k - now;
    for(int i = 0;i<now;i++){
        int ni = idx[i];
        use[ni]++;
    }

    mint ans = 1;
    ll all = k;
    vector<mint> fac(k+1,0);
    fac[0] = 1;
    for(int i = 1;i<=k;i++) fac[i] = fac[i-1] * i;
    for(int i = 0;i<n;i++){
        mint tmp = fac[all] * (fac[all-use[i]].inv()) * (fac[use[i]].inv());
        mint p = mint(a[i]) * (mint(sum).inv());
        p = p.pow(use[i]);
        tmp *= p;
        ans *= tmp;
        all -= use[i];
    }
    cout<<ans.val()<<endl;
    return;
    for(int i = 0;i<n;i++) cout<<use[i]<<" ";
    cout<<endl;
}

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    int t;
    cin>>t;
    while(t--){
        solve();
    }
    
}

0