結果
問題 | No.1554 array_and_me |
ユーザー | momoyuu |
提出日時 | 2024-08-07 02:06:15 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,430 bytes |
コンパイル時間 | 1,389 ms |
コンパイル使用メモリ | 114,196 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-08-07 02:06:21 |
合計ジャッジ時間 | 5,239 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 28 ms
5,376 KB |
testcase_02 | AC | 28 ms
5,376 KB |
testcase_03 | AC | 27 ms
5,376 KB |
testcase_04 | AC | 29 ms
5,376 KB |
testcase_05 | AC | 29 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 59 ms
6,016 KB |
testcase_12 | AC | 57 ms
6,016 KB |
testcase_13 | AC | 58 ms
6,016 KB |
testcase_14 | AC | 59 ms
6,144 KB |
testcase_15 | AC | 61 ms
6,144 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 | AC | 60 ms
5,376 KB |
testcase_37 | AC | 59 ms
5,376 KB |
testcase_38 | AC | 58 ms
5,376 KB |
testcase_39 | AC | 56 ms
5,376 KB |
testcase_40 | AC | 57 ms
5,376 KB |
testcase_41 | AC | 29 ms
5,376 KB |
ソースコード
#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){ if(res[i]!=res[j]) return res[i] > res[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(); } }