結果

問題 No.1387 Mitarushi's Remodeling
ユーザー chocoruskchocorusk
提出日時 2021-02-10 01:01:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 433 ms / 2,000 ms
コード長 1,565 bytes
コンパイル時間 4,148 ms
コンパイル使用メモリ 197,776 KB
実行使用メモリ 35,040 KB
最終ジャッジ日時 2024-07-07 06:16:42
合計ジャッジ時間 33,049 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
20,992 KB
testcase_01 AC 16 ms
20,992 KB
testcase_02 AC 16 ms
20,992 KB
testcase_03 AC 16 ms
20,992 KB
testcase_04 AC 17 ms
20,992 KB
testcase_05 AC 15 ms
21,120 KB
testcase_06 AC 16 ms
20,992 KB
testcase_07 AC 16 ms
20,992 KB
testcase_08 AC 23 ms
21,328 KB
testcase_09 AC 24 ms
21,280 KB
testcase_10 AC 24 ms
21,268 KB
testcase_11 AC 24 ms
21,248 KB
testcase_12 AC 24 ms
21,248 KB
testcase_13 AC 25 ms
21,376 KB
testcase_14 AC 406 ms
35,036 KB
testcase_15 AC 376 ms
34,796 KB
testcase_16 AC 376 ms
34,912 KB
testcase_17 AC 373 ms
34,912 KB
testcase_18 AC 375 ms
34,916 KB
testcase_19 AC 375 ms
34,912 KB
testcase_20 AC 376 ms
34,908 KB
testcase_21 AC 378 ms
34,908 KB
testcase_22 AC 375 ms
34,912 KB
testcase_23 AC 376 ms
34,916 KB
testcase_24 AC 375 ms
35,040 KB
testcase_25 AC 375 ms
35,036 KB
testcase_26 AC 376 ms
34,912 KB
testcase_27 AC 392 ms
35,040 KB
testcase_28 AC 379 ms
34,908 KB
testcase_29 AC 389 ms
34,912 KB
testcase_30 AC 378 ms
35,040 KB
testcase_31 AC 375 ms
34,912 KB
testcase_32 AC 375 ms
34,916 KB
testcase_33 AC 373 ms
35,040 KB
testcase_34 AC 375 ms
34,912 KB
testcase_35 AC 374 ms
34,912 KB
testcase_36 AC 374 ms
34,912 KB
testcase_37 AC 373 ms
34,912 KB
testcase_38 AC 375 ms
34,896 KB
testcase_39 AC 374 ms
34,908 KB
testcase_40 AC 372 ms
34,912 KB
testcase_41 AC 374 ms
35,000 KB
testcase_42 AC 372 ms
34,912 KB
testcase_43 AC 373 ms
34,916 KB
testcase_44 AC 373 ms
34,916 KB
testcase_45 AC 374 ms
34,912 KB
testcase_46 AC 373 ms
35,036 KB
testcase_47 AC 376 ms
35,040 KB
testcase_48 AC 373 ms
35,040 KB
testcase_49 AC 374 ms
34,916 KB
testcase_50 AC 371 ms
34,912 KB
testcase_51 AC 373 ms
35,036 KB
testcase_52 AC 374 ms
34,908 KB
testcase_53 AC 376 ms
34,876 KB
testcase_54 AC 379 ms
34,908 KB
testcase_55 AC 376 ms
35,036 KB
testcase_56 AC 376 ms
35,040 KB
testcase_57 AC 375 ms
34,912 KB
testcase_58 AC 377 ms
34,916 KB
testcase_59 AC 377 ms
34,908 KB
testcase_60 AC 377 ms
34,908 KB
testcase_61 AC 377 ms
34,912 KB
testcase_62 AC 375 ms
34,908 KB
testcase_63 AC 377 ms
34,916 KB
testcase_64 AC 433 ms
34,900 KB
testcase_65 AC 378 ms
34,800 KB
testcase_66 AC 377 ms
35,008 KB
testcase_67 AC 378 ms
34,996 KB
testcase_68 AC 377 ms
34,816 KB
testcase_69 AC 394 ms
34,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#include <list>
#include <atcoder/all>
#define popcount __builtin_popcount
using namespace std;
using namespace atcoder;
typedef long long ll;
typedef pair<int, int> P;
using mint=modint998244353;
mint f[2000010], invf[2000010];
void fac(int n){
    f[0]=1;
    for(ll i=1; i<=n; i++) f[i]=f[i-1]*i;
    invf[n]=f[n].inv();
    for(ll i=n-1; i>=0; i--) invf[i]=invf[i+1]*(i+1);
}
mint comb(int x, int y){
    if(!(0<=y && y<=x)) return 0;
    return f[x]*invf[y]*invf[x-y];
}
mint fs[500050];
int main()
{
    int n, k;
    cin>>n>>k;
    vector<mint> s(n), sr(n);
    mint ss=0, ss2=0;
    mint mp=1;
    for(int i=0; i<n; i++){
        ll m; cin>>m;
        mp*=mint(m);
        s[i]=mint(m+1)/2;
        sr[n-1-i]=s[i];
        ss+=s[i];
        ss2+=s[i]*s[i];
    }
    fac(n);
    mint ps=0;
    for(int i=1; i<=k; i++){
        ps+=f[n-1]*invf[n-1-i];
    }
    mint ans=(ss*ss-ss2)/2*ps;
    auto sp=convolution(s, sr);
    for(int i=0; i<=n; i++){
        fs[i+1]=fs[i]+invf[i];
    }
    for(int d=0; d<n-1; d++){
        ans-=f[d]*(fs[d]-fs[max(0, d-k)])*sp[d];
    }
    ans*=mp;
    cout<<ans.val()<<endl;
    return 0;
}
0