結果

問題 No.1533 Don't be Negative!
ユーザー leukocyteleukocyte
提出日時 2022-07-02 12:26:49
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 6,004 ms / 8,000 ms
コード長 640 bytes
コンパイル時間 1,523 ms
コンパイル使用メモリ 166,676 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-29 10:36:40
合計ジャッジ時間 116,463 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 14 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 654 ms
5,376 KB
testcase_12 AC 546 ms
5,376 KB
testcase_13 AC 77 ms
5,376 KB
testcase_14 AC 259 ms
5,376 KB
testcase_15 AC 621 ms
5,376 KB
testcase_16 AC 2,095 ms
5,376 KB
testcase_17 AC 72 ms
5,376 KB
testcase_18 AC 1,860 ms
5,376 KB
testcase_19 AC 167 ms
5,376 KB
testcase_20 AC 2,183 ms
5,376 KB
testcase_21 AC 306 ms
5,376 KB
testcase_22 AC 1,904 ms
5,376 KB
testcase_23 AC 1,207 ms
5,376 KB
testcase_24 AC 1,158 ms
5,376 KB
testcase_25 AC 1,311 ms
5,376 KB
testcase_26 AC 164 ms
5,376 KB
testcase_27 AC 1,456 ms
5,376 KB
testcase_28 AC 2,760 ms
5,376 KB
testcase_29 AC 1,946 ms
5,376 KB
testcase_30 AC 5,297 ms
5,376 KB
testcase_31 AC 31 ms
5,376 KB
testcase_32 AC 348 ms
5,376 KB
testcase_33 AC 2,383 ms
5,376 KB
testcase_34 AC 12 ms
5,376 KB
testcase_35 AC 1,376 ms
5,376 KB
testcase_36 AC 2,205 ms
5,376 KB
testcase_37 AC 249 ms
5,376 KB
testcase_38 AC 5,046 ms
5,376 KB
testcase_39 AC 3,569 ms
5,376 KB
testcase_40 AC 3,892 ms
5,376 KB
testcase_41 AC 3,036 ms
5,376 KB
testcase_42 AC 4,181 ms
5,376 KB
testcase_43 AC 3,778 ms
5,376 KB
testcase_44 AC 2,625 ms
5,376 KB
testcase_45 AC 3,231 ms
5,376 KB
testcase_46 AC 3,229 ms
5,376 KB
testcase_47 AC 3,273 ms
5,376 KB
testcase_48 AC 3,807 ms
5,376 KB
testcase_49 AC 3,828 ms
5,376 KB
testcase_50 AC 5,746 ms
5,376 KB
testcase_51 AC 5,233 ms
5,376 KB
testcase_52 AC 3,106 ms
5,376 KB
testcase_53 AC 4,648 ms
5,376 KB
testcase_54 AC 6,004 ms
5,376 KB
testcase_55 AC 5,958 ms
5,376 KB
testcase_56 AC 5,961 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;
const int N=4e4,S=8e4;
const int mod=998244353;
int n,m,k;
int f[S+5],g[S+5];
int c[N+5];
int ans;
int main(){
	scanf("%d %d %d",&n,&m,&k);
	f[0]=1;
	int ms=2*m-(k>0),tmp=1;
	for(int i=1;i<=n;i++){
		int r=min(i,n-i)*m;
		ll s=0;
		for(int j=-m;j<m;j++) s+=f[abs(j)];
		for(int j=0;j<=r;j++){
			s+=f[j+m];
			if(k) g[j]=(s-f[j+k]-f[abs(j-k)])%mod;
			else g[j]=(s-f[j])%mod;
			s-=f[abs(j-m)];
		}
		memcpy(f,g,(r+1)*sizeof(int));
		tmp=1ll*tmp*ms%mod;
		int c=499122177ll*(tmp-f[0])%mod;
		ans=(1ll*ans*ms+1ll*c*(n-i+1))%mod;
	}
	printf("%d\n",(ans+mod)%mod);
	return 0;
}
0