結果

問題 No.802 だいたい等差数列
ユーザー tempura_pptempura_pp
提出日時 2019-03-10 01:42:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 992 bytes
コンパイル時間 1,613 ms
コンパイル使用メモリ 170,576 KB
実行使用メモリ 33,712 KB
最終ジャッジ日時 2024-07-01 19:34:03
合計ジャッジ時間 3,370 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 50 ms
26,956 KB
testcase_11 AC 66 ms
33,168 KB
testcase_12 AC 30 ms
17,152 KB
testcase_13 AC 66 ms
32,640 KB
testcase_14 AC 46 ms
24,320 KB
testcase_15 AC 23 ms
14,440 KB
testcase_16 AC 49 ms
25,256 KB
testcase_17 AC 16 ms
10,160 KB
testcase_18 AC 13 ms
8,832 KB
testcase_19 AC 36 ms
19,652 KB
testcase_20 AC 55 ms
26,624 KB
testcase_21 AC 80 ms
33,664 KB
testcase_22 AC 73 ms
33,688 KB
testcase_23 AC 22 ms
12,544 KB
testcase_24 AC 17 ms
10,368 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 17 ms
10,240 KB
testcase_27 AC 14 ms
9,088 KB
testcase_28 AC 31 ms
17,152 KB
testcase_29 AC 76 ms
33,712 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 19 ms
12,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define REP(i,m,n) for(int i=(int)(m) ; i < (int) (n) ; ++i )
#define rep(i,n) REP(i,0,n)
typedef long long ll;
const ll mod=1e9+7 ;


vector<ll> inv,fact,invfact;
void mod_build(int n=101010){
	fact.resize(n+1);
	inv.resize(n+1);
	invfact.resize(n+1);
	fact[0]=inv[0]=invfact[0]=1;
	inv[1]=1;
	rep(i,n){
		fact[i+1]=fact[i]*(i+1)%mod;
		if(i>0)inv[i+1]=mod-inv[mod%(i+1)]*(mod/(i+1))%mod;
		invfact[i+1]=invfact[i]*inv[i+1]%mod;
	}
}
ll perm(int n,int k){
	if(n<0||k<0||k>n)return 0;
	return fact[n]*invfact[n-k]%mod;
}
ll comb(ll n,ll k){
	if(n<0||k<0||k>n)return 0;
	return (fact[n]*invfact[n-k]%mod)*invfact[k]%mod;
}

int main(){
	ll n,m,d1,d2;
	cin>>n>>m>>d1>>d2;
	assert(2<=n&&n<=300000);
	assert(1<=m&&m<=1000000);
	assert(0<=d1&&d1<=d2&&d2<=m);
	m-=(n-1)*(d1-1);
	d2-=d1-1;
	mod_build(max(m+1,n));
	ll ans=0;
	rep(i,n){
		ll ret=comb(m-d2*i,n)*comb(n-1,i)%mod;
		if(i%2)ans+=mod-ret;
		else ans+=ret;
	}
	cout<<ans%mod<<endl;
	return 0;
}
0