結果

問題 No.498 ワープクリスタル (給料日編)
ユーザー 👑 kmjpkmjp
提出日時 2017-03-24 23:05:57
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 1,451 bytes
コンパイル時間 1,261 ms
コンパイル使用メモリ 148,320 KB
実行使用メモリ 50,412 KB
最終ジャッジ日時 2023-09-20 02:55:18
合計ジャッジ時間 5,968 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
50,180 KB
testcase_01 AC 136 ms
50,124 KB
testcase_02 AC 138 ms
50,304 KB
testcase_03 AC 142 ms
50,180 KB
testcase_04 AC 145 ms
50,296 KB
testcase_05 AC 145 ms
50,124 KB
testcase_06 AC 140 ms
50,124 KB
testcase_07 AC 142 ms
50,376 KB
testcase_08 AC 136 ms
50,200 KB
testcase_09 AC 141 ms
50,140 KB
testcase_10 AC 147 ms
50,332 KB
testcase_11 AC 142 ms
50,288 KB
testcase_12 AC 141 ms
50,128 KB
testcase_13 AC 147 ms
50,176 KB
testcase_14 AC 152 ms
50,136 KB
testcase_15 AC 149 ms
50,176 KB
testcase_16 AC 141 ms
50,128 KB
testcase_17 AC 144 ms
50,176 KB
testcase_18 AC 146 ms
50,292 KB
testcase_19 AC 136 ms
50,244 KB
testcase_20 AC 141 ms
50,412 KB
testcase_21 AC 143 ms
50,124 KB
testcase_22 AC 140 ms
50,136 KB
testcase_23 AC 139 ms
50,132 KB
testcase_24 AC 141 ms
50,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#undef _P
#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 ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
//-------------------------------------------------------

ll mo=1000000007;
const int NUM_=2000003;
static ll fact[NUM_+1],factr[NUM_+1],inv[NUM_+1];
ll ret=0;

int GX,GY,K;
int X[10],Y[10],N[10];
vector<int> R;


void dfs(int id, int cx,int cy) {
	if(id==K) {
		if(cx!=GX || cy!=GY) return;
		
		int sum=0;
		FORR(r,R) sum+=r;
		ll t = fact[sum];
		FORR(r,R) t = t*factr[r]%mo;
		(ret = ret + t)%=mo;
		
	}
	else {
		int i;
		FOR(i,N[id]+1) {
			R.push_back(i);
			dfs(id+1,cx+X[id]*i,cy+Y[id]*i);
			R.pop_back();
		}
		
	}
}

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	inv[1]=fact[0]=factr[0]=1;
	for (int i=2;i<=NUM_;++i) inv[i] = inv[mo % i] * (mo - mo / i) % mo;
	for (int i=1;i<=NUM_;++i) fact[i]=fact[i-1]*i%mo, factr[i]=factr[i-1]*inv[i]%mo;
	
	cin>>GX>>GY>>K;
	FOR(i,K) cin>>X[i]>>Y[i]>>N[i];
	
	dfs(0,0,0);
	
	cout<<ret<<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);
	solve(); return 0;
}
0