結果

問題 No.1815 K色問題
ユーザー 👑 kmjpkmjp
提出日時 2022-01-22 11:51:07
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,970 bytes
コンパイル時間 2,177 ms
コンパイル使用メモリ 208,180 KB
実行使用メモリ 12,828 KB
最終ジャッジ日時 2024-03-13 11:30:49
合計ジャッジ時間 10,497 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
12,828 KB
testcase_01 AC 19 ms
12,828 KB
testcase_02 WA -
testcase_03 AC 19 ms
12,828 KB
testcase_04 AC 19 ms
12,828 KB
testcase_05 WA -
testcase_06 AC 518 ms
12,828 KB
testcase_07 AC 125 ms
12,828 KB
testcase_08 WA -
testcase_09 AC 85 ms
12,828 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 19 ms
12,828 KB
testcase_13 AC 19 ms
12,828 KB
testcase_14 WA -
testcase_15 TLE -
権限があれば一括ダウンロードができます

ソースコード

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;
ll M,K;
const ll mo=1000000007;

ll comb(ll N_, ll C_) {
	const int NUM_=400001;
	static ll fact[NUM_+1],factr[NUM_+1],inv[NUM_+1];
	if (fact[0]==0) {
		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;
	}
	if(C_<0 || C_>N_) return 0;
	return factr[C_]*fact[N_]%mo*factr[N_-C_]%mo;
}

const int MAT=2;
struct Mat { ll v[MAT][MAT]; Mat(){ZERO(v);};};

Mat mulmat(Mat& a,Mat& b,int n=MAT) {
	ll mo2=4*mo*mo;
	int x,y,z; Mat r;
	FOR(x,n) FOR(y,n) r.v[x][y]=0;
	FOR(x,n) FOR(z,n) FOR(y,n) {
		r.v[x][y] += a.v[x][z]*b.v[z][y];
		if(r.v[x][y]>mo2) r.v[x][y] -= mo2;
	}
	FOR(x,n) FOR(y,n) r.v[x][y]%=mo;
	return r;
}

Mat powmat(ll p,Mat a,int n=MAT) {
	int i,x,y; Mat r;
	FOR(x,n) FOR(y,n) r.v[x][y]=0;
	FOR(i,n) r.v[i][i]=1;
	while(p) {
		if(p%2) r=mulmat(r,a,n);
		a=mulmat(a,a,n);
		p>>=1;
	}
	return r;
}

void dfs(vector<int> V,Mat& A,int K) {
	int ma=*max_element(ALL(V));
	if(V.size()==6) {
		if(V[0]==V[3]) return;
		if(V[1]==V[4]) return;
		if(V[2]==V[5]) return;
		if(V[3]==V[4]) return;
		if(V[4]==V[5]) return;
		int x=V[0]==V[2];
		int y=V[3]==V[5];
		if(x) (A.v[y][x]+=comb(K-(ma+1),(ma+1)-2))%=mo;
		else (A.v[y][x]+=comb(K-(ma+1),(ma+1)-3))%=mo;
	}
	else {
		int i;
		FOR(i,ma+2) {
			V.push_back(i);
			dfs(V,A,K);
			V.pop_back();
		}
		
	}
}

ll hoge(int K) {
	Mat A;
	ll ret;
	if(N==1) {
		A.v[0][0]=K-1;
		A=powmat(M-1,A);
		ret=K*A.v[0][0]%mo;
	}
	else if(N==2) {
		A.v[0][0]=((K-2)*(K-2)+K-1)%mo;
		A=powmat(M-1,A);
		ret=K*(K-1)%mo*A.v[0][0]%mo;
	}
	else {
		// XYZ->XYZ
		dfs({0,1,0},A,K);
		dfs({0,1,2},A,K);
		A=powmat(M-1,A);
		ll XYX=K*(K-1)%mo;
		ll XYZ=K*(K-1)%mo*(K-2)%mo;
		//cout<<K<<" "<<XYZ<<"*("<<A.v[0][0]<<"+"<<A.v[1][0]<<")+"<<XYX<<"*("<<A.v[0][1]<<"+"<<A.v[1][1]<<")"<<endl;
		ret=XYZ*(A.v[0][0]+A.v[1][0])+XYX*(A.v[0][1]+A.v[1][1]);
	}
	return ret%mo;
}


void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N>>M>>K;
	
	ll ret=0;
	for(i=1;i<=K;i++) {
		ll a=hoge(i)*comb(K,i)%mo;
		//cout<<i<<" "<<a<<endl;
		if((K-i)%2) {
			ret+=mo-a;
		}
		else {
			ret+=a;
		}
	}
	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