結果

問題 No.1685 One by One
ユーザー kmjpkmjp
提出日時 2021-09-23 23:10:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 688 ms / 3,000 ms
コード長 2,103 bytes
コンパイル時間 2,556 ms
コンパイル使用メモリ 203,284 KB
実行使用メモリ 334,208 KB
最終ジャッジ日時 2024-07-05 09:36:07
合計ジャッジ時間 17,522 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
81,536 KB
testcase_01 AC 68 ms
81,536 KB
testcase_02 AC 70 ms
86,272 KB
testcase_03 AC 147 ms
136,064 KB
testcase_04 AC 86 ms
97,152 KB
testcase_05 AC 351 ms
229,248 KB
testcase_06 AC 189 ms
157,568 KB
testcase_07 AC 320 ms
218,752 KB
testcase_08 AC 74 ms
84,864 KB
testcase_09 AC 91 ms
103,680 KB
testcase_10 AC 576 ms
324,352 KB
testcase_11 AC 98 ms
108,928 KB
testcase_12 AC 75 ms
86,784 KB
testcase_13 AC 431 ms
262,400 KB
testcase_14 AC 182 ms
155,264 KB
testcase_15 AC 455 ms
273,152 KB
testcase_16 AC 80 ms
90,496 KB
testcase_17 AC 76 ms
88,192 KB
testcase_18 AC 79 ms
91,136 KB
testcase_19 AC 72 ms
82,944 KB
testcase_20 AC 345 ms
225,024 KB
testcase_21 AC 369 ms
226,816 KB
testcase_22 AC 373 ms
233,728 KB
testcase_23 AC 398 ms
237,824 KB
testcase_24 AC 540 ms
317,184 KB
testcase_25 AC 657 ms
330,752 KB
testcase_26 AC 561 ms
323,584 KB
testcase_27 AC 593 ms
312,832 KB
testcase_28 AC 592 ms
334,208 KB
testcase_29 AC 688 ms
333,952 KB
testcase_30 AC 589 ms
334,208 KB
testcase_31 AC 679 ms
334,080 KB
testcase_32 AC 677 ms
334,080 KB
testcase_33 AC 677 ms
333,952 KB
testcase_34 AC 69 ms
81,664 KB
testcase_35 AC 70 ms
81,792 KB
testcase_36 AC 70 ms
81,792 KB
testcase_37 AC 69 ms
81,792 KB
testcase_38 AC 385 ms
223,872 KB
testcase_39 AC 374 ms
223,744 KB
testcase_40 AC 381 ms
223,360 KB
testcase_41 AC 384 ms
223,616 KB
testcase_42 AC 69 ms
81,536 KB
testcase_43 AC 70 ms
81,664 KB
testcase_44 AC 69 ms
81,536 KB
testcase_45 AC 69 ms
81,536 KB
testcase_46 AC 197 ms
162,304 KB
testcase_47 AC 199 ms
162,432 KB
testcase_48 AC 198 ms
162,432 KB
testcase_49 AC 198 ms
162,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define FORR2(x,y,arr) for(auto& [x,y]:arr)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;}
template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;}
//-------------------------------------------------------

int N,M;
ll dp[4040][4040];
ll dp2[4040][4040];
const ll mo=1000000007;

ll comb(int P_,int Q_) {
	static const int N_=4020;
	static ll C_[N_][N_];
	
	if(C_[0][0]==0) {
		int i,j;
		FOR(i,N_) C_[i][0]=C_[i][i]=1;
		for(i=1;i<N_;i++) for(j=1;j<i;j++) C_[i][j]=(C_[i-1][j-1]+C_[i-1][j])%mo;
	}
	if(P_<0 || P_>N_ || Q_<0 || Q_>P_) return 0;
	return C_[P_][Q_];
}

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	dp[0][0]=1;
	cin>>N>>M;
	FOR(i,N) {
		FOR(j,4020) dp[i+1][j+1]=(dp[i][j]+dp[i+1][j])%mo;
	}
	
	ll ret=0;
	for(int mi=0;mi<=N;mi++) {
		for(int ze=0;mi+ze<=N;ze++) {
			int pl=N-mi-ze;
			if(mi>=(N+1)/2) continue;
			if(mi+ze<(N+1)/2) continue;
			
			ll pat=comb(mi+ze,mi)*comb(N,pl)%mo;
			if((mi+pl)%2==M%2) {
				dp2[mi+pl][mi+pl]+=pat;
				if(N%2) {
					int d=mi+pl+1;
					int ma=M-(ze-abs(pl-mi));
					if(d%2!=ma%2) ma--;
					if(d<=ma) {
						dp2[mi+pl][d]+=pat;
						dp2[mi+pl][ma+2]+=mo-pat;
					}
				}
			}
			else {
				dp2[mi+pl][mi+pl+1]+=pat;
				if(N%2) {
					int d=mi+pl;
					int ma=M-(ze-abs(pl-mi));
					if(d%2!=ma%2) ma--;
					if(d<=ma) {
						dp2[mi+pl][d]+=pat;
						dp2[mi+pl][ma+2]+=mo-pat;
					}
				}
				
			}
		}
	}
	FOR(i,N+1) {
		FOR(j,M+1) {
			if(j>=2) (dp2[i][j]+=dp2[i][j-2])%=mo;
			(ret+=dp2[i][j]*dp[i][j])%=mo;
		}
	}
	cout<<ret%mo<<endl;
	
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0