結果

問題 No.1533 Don't be Negative!
ユーザー SuiseisekiSuiseiseki
提出日時 2022-07-02 18:35:15
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 1,294 bytes
コンパイル時間 429 ms
コンパイル使用メモリ 45,568 KB
実行使用メモリ 10,496 KB
最終ジャッジ日時 2024-11-27 14:14:06
合計ジャッジ時間 304,913 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
8,320 KB
testcase_02 AC 2 ms
8,448 KB
testcase_03 WA -
testcase_04 AC 1 ms
8,448 KB
testcase_05 AC 2 ms
8,320 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 2 ms
8,704 KB
testcase_09 AC 1 ms
8,576 KB
testcase_10 AC 2 ms
8,704 KB
testcase_11 AC 3,118 ms
8,448 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 TLE -
testcase_17 WA -
testcase_18 TLE -
testcase_19 WA -
testcase_20 TLE -
testcase_21 WA -
testcase_22 TLE -
testcase_23 AC 5,647 ms
8,576 KB
testcase_24 WA -
testcase_25 AC 6,078 ms
8,576 KB
testcase_26 AC 751 ms
5,248 KB
testcase_27 AC 6,793 ms
5,248 KB
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 AC 135 ms
5,248 KB
testcase_32 AC 1,622 ms
5,248 KB
testcase_33 TLE -
testcase_34 AC 49 ms
5,248 KB
testcase_35 AC 6,479 ms
5,248 KB
testcase_36 TLE -
testcase_37 AC 1,151 ms
5,248 KB
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <algorithm>
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;
		int sum=0;
		for(int j=0;j<=nxt_len;j++){
			sum=(sum+f[cur][j])%Mod;
			if(j-m-1>=0){
				sum=(sum-f[cur][j-m-1]+Mod)%Mod;
			}
			f[nxt][j]=sum;
			if(j-k>=0){
				f[nxt][j]=(f[nxt][j]-f[cur][j-k]+Mod)%Mod;
			}
		}
		sum=0;
		for(int j=cur_len;j>=-m;j--){
			if(j+1>0){
				sum=(sum+f[cur][j+1])%Mod;
			}
			if(j+m+1<=cur_len){
				sum=(sum-f[cur][j+m+1]+Mod)%Mod;
			}
			int nxt_j=std::abs(j);
			if(nxt_j<=nxt_len){
				f[nxt][nxt_j]=(f[nxt][nxt_j]+sum)%Mod;
				if(k>0&&j+k>0&&std::abs(j+k)<=cur_len){
					f[nxt][nxt_j]=(f[nxt][nxt_j]-f[cur][std::abs(j+k)]+Mod)%Mod;
				}
			}
		}
		if(k!=0){
			f[nxt][0]=(2ll*f[nxt][0]-f[cur][0]+Mod)%Mod;
		}
		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