結果

問題 No.616 へんなソート
ユーザー Sebastian KingSebastian King
提出日時 2017-12-16 00:22:11
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 24 ms / 2,000 ms
コード長 463 bytes
コンパイル時間 1,359 ms
コンパイル使用メモリ 159,996 KB
実行使用メモリ 22,528 KB
最終ジャッジ日時 2024-05-08 12:20:53
合計ジャッジ時間 2,458 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 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 2 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 14 ms
14,080 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 12 ms
12,416 KB
testcase_18 AC 7 ms
7,552 KB
testcase_19 AC 6 ms
6,656 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 4 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 3 ms
5,376 KB
testcase_27 AC 3 ms
5,376 KB
testcase_28 AC 24 ms
22,400 KB
testcase_29 AC 24 ms
22,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
int n,m,M=1e9+7,ans=0;
int f[302][50000];
void upd(int&x,int y){x+=y;if(x>=M)x-=M;}
int main(){
	std::ios::sync_with_stdio(false);
	cin>>n>>m;
	f[1][0]=f[2][0]=f[2][1]=1;
	for(int i=3,q=3;i<=n;i++,q+=i){
		int l=0;
		for(int k=0;k<i;k++)upd(l,f[i-1][k]),f[i][k]=l;
		for(int j=i;j<=q;j++){upd(l,f[i-1][j]),l-=f[i-1][j-i];if(l<0)l+=M;f[i][j]=l;}
	}
	for(int i=0;i<=m;i++)upd(ans,f[n][i]);
	cout<<ans<<endl;
	return 0;
}
0