結果

問題 No.1533 Don't be Negative!
ユーザー SuiseisekiSuiseiseki
提出日時 2022-07-02 18:49:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 7,949 ms / 8,000 ms
コード長 942 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 44,860 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-11 10:21:15
合計ジャッジ時間 147,520 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 14 ms
6,820 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 866 ms
6,816 KB
testcase_12 AC 576 ms
6,820 KB
testcase_13 AC 82 ms
6,820 KB
testcase_14 AC 272 ms
6,820 KB
testcase_15 AC 649 ms
6,820 KB
testcase_16 AC 2,784 ms
6,816 KB
testcase_17 AC 77 ms
6,820 KB
testcase_18 AC 2,504 ms
6,816 KB
testcase_19 AC 182 ms
6,816 KB
testcase_20 AC 2,911 ms
6,820 KB
testcase_21 AC 325 ms
6,820 KB
testcase_22 AC 2,531 ms
6,816 KB
testcase_23 AC 1,626 ms
6,816 KB
testcase_24 AC 1,235 ms
6,820 KB
testcase_25 AC 1,738 ms
6,816 KB
testcase_26 AC 211 ms
6,820 KB
testcase_27 AC 1,925 ms
6,816 KB
testcase_28 AC 3,624 ms
6,820 KB
testcase_29 AC 2,582 ms
6,816 KB
testcase_30 AC 7,039 ms
6,816 KB
testcase_31 AC 41 ms
6,820 KB
testcase_32 AC 462 ms
6,816 KB
testcase_33 AC 2,501 ms
6,816 KB
testcase_34 AC 16 ms
6,820 KB
testcase_35 AC 1,812 ms
6,820 KB
testcase_36 AC 2,916 ms
6,816 KB
testcase_37 AC 327 ms
6,816 KB
testcase_38 AC 6,666 ms
6,816 KB
testcase_39 AC 4,733 ms
6,820 KB
testcase_40 AC 5,150 ms
6,820 KB
testcase_41 AC 4,094 ms
6,816 KB
testcase_42 AC 5,551 ms
6,816 KB
testcase_43 AC 5,000 ms
6,816 KB
testcase_44 AC 3,466 ms
6,816 KB
testcase_45 AC 4,286 ms
6,816 KB
testcase_46 AC 4,287 ms
6,816 KB
testcase_47 AC 3,479 ms
6,816 KB
testcase_48 AC 5,044 ms
6,820 KB
testcase_49 AC 5,069 ms
6,816 KB
testcase_50 AC 7,562 ms
6,816 KB
testcase_51 AC 6,923 ms
6,816 KB
testcase_52 AC 3,275 ms
6,816 KB
testcase_53 AC 4,983 ms
6,816 KB
testcase_54 AC 7,949 ms
6,820 KB
testcase_55 AC 7,895 ms
6,816 KB
testcase_56 AC 7,921 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <algorithm>
typedef long long ll;
const int Maxn=80000;
const int Mod=998244353;
const int inv_2=(Mod+1)/2;
int f[2][Maxn+6];
int n,m,k;
int pow_v[Maxn+5];
int main(){
	scanf("%d%d%d",&n,&m,&k);
	int cur=0,nxt;
	f[cur][0]=1;
	pow_v[0]=1;
	for(int i=1;i<=n;i++){
		pow_v[i]=1ll*pow_v[i-1]*(2*m-1+(k==0))%Mod;
	}
	int ans=0;
	for(int i=1;i<=n;i++){
		nxt=cur^1;
		int cur_len=std::min(i-1,n-i+1)*m,nxt_len=std::min(i,n-i)*m;
		ll sum=0;
		for(int j=-m;j<m;j++){
			sum+=f[cur][std::abs(j)];
		}
		for(int j=0;j<=nxt_len;j++){
			sum+=f[cur][j+m];
			if(k==0){
				f[nxt][j]=(sum-f[cur][j])%Mod;
			}
			else{
				f[nxt][j]=(sum-f[cur][std::abs(j-k)]-f[cur][j+k])%Mod;
			}
			sum-=f[cur][std::abs(j-m)];
		}
		memset(f[cur],0,(cur_len+1)*sizeof(int));
		cur=nxt;
		int val=1ll*(pow_v[i]-f[cur][0]+Mod)*inv_2%Mod;
		ans=(ans+1ll*pow_v[n-i]*val%Mod*(n-i+1))%Mod;
	}
	printf("%d\n",ans);
	return 0;
}
0