結果
問題 | No.2670 Sum of Products of Interval Lengths |
ユーザー | kotatsugame |
提出日時 | 2024-03-08 23:35:56 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 50 ms / 2,000 ms |
コード長 | 772 bytes |
コンパイル時間 | 842 ms |
コンパイル使用メモリ | 75,420 KB |
実行使用メモリ | 13,696 KB |
最終ジャッジ日時 | 2024-09-29 20:49:12 |
合計ジャッジ時間 | 1,804 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
6,816 KB |
testcase_01 | AC | 43 ms
13,696 KB |
testcase_02 | AC | 20 ms
8,320 KB |
testcase_03 | AC | 8 ms
6,816 KB |
testcase_04 | AC | 20 ms
8,320 KB |
testcase_05 | AC | 30 ms
10,752 KB |
testcase_06 | AC | 36 ms
11,904 KB |
testcase_07 | AC | 23 ms
8,320 KB |
testcase_08 | AC | 10 ms
6,816 KB |
testcase_09 | AC | 27 ms
8,320 KB |
testcase_10 | AC | 41 ms
10,752 KB |
testcase_11 | AC | 50 ms
11,904 KB |
testcase_12 | AC | 44 ms
13,696 KB |
testcase_13 | AC | 44 ms
13,568 KB |
testcase_14 | AC | 43 ms
13,696 KB |
testcase_15 | AC | 43 ms
13,696 KB |
testcase_16 | AC | 45 ms
13,568 KB |
ソースコード
#include<iostream> #include<cassert> #include<atcoder/modint> #include<atcoder/fenwicktree> using namespace std; using mint=atcoder::modint998244353; int N; long M; mint dp[2<<17]; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); cin>>N>>M; atcoder::fenwick_tree<mint>BIT[6][2]; for(int i=0;i<6;i++)for(int j=0;j<2;j++) { BIT[i][j]=atcoder::fenwick_tree<mint>(N+1); } dp[0]=1; auto st=[&](int i){ BIT[i%6][0].add(i,dp[i]); BIT[i%6][1].add(i,dp[i]*i); }; st(0); for(int i=1;i<=N;i++) { dp[i]=0; int li=max(0L,i-M); for(int v=0;v<6&&v<=i;v++)if(v%3!=0) { int j=(i-v)%6; mint t0=BIT[j][0].sum(li,i); mint t1=BIT[j][1].sum(li,i); mint t=(M-i+1)*t0+t1; if(v>=3)t=-t; dp[i]+=t; } st(i); } cout<<dp[N].val()<<endl; }