結果
問題 | No.1857 Gacha Addiction |
ユーザー | 蜜蜂 |
提出日時 | 2021-12-31 19:16:20 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 990 ms / 6,000 ms |
コード長 | 1,657 bytes |
コンパイル時間 | 4,557 ms |
コンパイル使用メモリ | 250,468 KB |
実行使用メモリ | 31,208 KB |
最終ジャッジ日時 | 2024-07-01 21:45:02 |
合計ジャッジ時間 | 34,741 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 11 ms
5,376 KB |
testcase_05 | AC | 11 ms
5,376 KB |
testcase_06 | AC | 11 ms
5,376 KB |
testcase_07 | AC | 11 ms
5,376 KB |
testcase_08 | AC | 11 ms
5,376 KB |
testcase_09 | AC | 257 ms
12,268 KB |
testcase_10 | AC | 253 ms
11,752 KB |
testcase_11 | AC | 254 ms
11,880 KB |
testcase_12 | AC | 255 ms
12,008 KB |
testcase_13 | AC | 258 ms
11,884 KB |
testcase_14 | AC | 939 ms
30,564 KB |
testcase_15 | AC | 990 ms
29,544 KB |
testcase_16 | AC | 973 ms
29,928 KB |
testcase_17 | AC | 982 ms
30,312 KB |
testcase_18 | AC | 960 ms
30,312 KB |
testcase_19 | AC | 952 ms
29,548 KB |
testcase_20 | AC | 948 ms
29,288 KB |
testcase_21 | AC | 954 ms
30,180 KB |
testcase_22 | AC | 968 ms
29,672 KB |
testcase_23 | AC | 966 ms
29,932 KB |
testcase_24 | AC | 955 ms
30,060 KB |
testcase_25 | AC | 962 ms
29,668 KB |
testcase_26 | AC | 940 ms
30,952 KB |
testcase_27 | AC | 955 ms
29,416 KB |
testcase_28 | AC | 940 ms
30,184 KB |
testcase_29 | AC | 955 ms
31,208 KB |
testcase_30 | AC | 950 ms
30,188 KB |
testcase_31 | AC | 945 ms
30,184 KB |
testcase_32 | AC | 941 ms
29,028 KB |
testcase_33 | AC | 949 ms
29,800 KB |
testcase_34 | AC | 952 ms
30,568 KB |
testcase_35 | AC | 945 ms
29,932 KB |
testcase_36 | AC | 946 ms
29,032 KB |
testcase_37 | AC | 939 ms
29,416 KB |
testcase_38 | AC | 960 ms
29,548 KB |
testcase_39 | AC | 262 ms
13,160 KB |
testcase_40 | AC | 281 ms
13,160 KB |
testcase_41 | AC | 374 ms
15,592 KB |
testcase_42 | AC | 73 ms
6,248 KB |
testcase_43 | AC | 756 ms
27,112 KB |
testcase_44 | AC | 836 ms
29,032 KB |
testcase_45 | AC | 2 ms
5,376 KB |
testcase_46 | AC | 2 ms
5,376 KB |
コンパイルメッセージ
main.cpp: In function 'int main()': main.cpp:56:10: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 56 | auto [sz1,A,B]=que.top(); | ^ main.cpp:58:10: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 58 | auto [sz2,a,b]=que.top(); | ^ main.cpp:78:8: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17' [-Wc++17-extensions] 78 | auto [sz,q,r]=que.top(); | ^
ソースコード
//g++ 2.cpp -std=c++14 -O2 -I . #include <bits/stdc++.h> using namespace std; #include <atcoder/all> using namespace atcoder; using ll = long long; using ld = long double; using vi = vector<int>; using vvi = vector<vi>; using vll = vector<ll>; using vvll = vector<vll>; using vld = vector<ld>; using vvld = vector<vld>; using vst = vector<string>; using vvst = vector<vst>; #define fi first #define se second #define pb push_back #define pq_big(T) priority_queue<T,vector<T>,less<T>> #define pq_small(T) priority_queue<T,vector<T>,greater<T>> #define all(a) a.begin(),a.end() #define rep(i,start,end) for(ll i=start;i<(ll)(end);i++) #define per(i,start,end) for(ll i=start;i>=(ll)(end);i--) #define uniq(a) sort(all(a));a.erase(unique(all(a)),a.end()) // size pi/sx+1 (pi/s)^2x using P = tuple<int,vll,vll>; constexpr ll mod = 998244353; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int n; ll s; cin>>n>>s; ll inv_s=pow_mod(s,mod-2,mod); pq_small(P) que; rep(i,0,n){ ll p; cin>>p; p*=inv_s; p%=mod; que.push({1,{1,p},{0,(p*p)%mod}}); } while(que.size()>1){ auto [sz1,A,B]=que.top(); que.pop(); auto [sz2,a,b]=que.top(); que.pop(); vll x=convolution(A,a); vll y=convolution(A,b); vll z=convolution(B,a); rep(i,0,z.size()){ if(i<y.size()){ y[i]+=z[i]; y[i]%=mod; } else{ y.emplace_back(z[i]); } } que.push({sz1+sz2,x,y}); } auto [sz,q,r]=que.top(); ll ans=0; ll fractal=2; rep(i,1,r.size()){ ans+=r[i]*fractal; ans%=mod; fractal*=i+2; fractal%=mod; } cout<<ans<<endl; }