結果

問題 No.1112 冥界の音楽
ユーザー ok
提出日時 2020-07-10 22:00:16
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 22 ms / 2,000 ms
コード長 1,642 bytes
コンパイル時間 1,264 ms
コンパイル使用メモリ 92,208 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-11 09:11:10
合計ジャッジ時間 2,251 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<iomanip>
#include<cmath>
#include<vector>
#include<algorithm>
#include<utility>

using namespace std;

#define int long long
#define endl "\n"

constexpr long long INF = (long long)1e18;
constexpr long long MOD = 1'000'000'007; 

struct fast_io {
	fast_io(){
		std::cin.tie(nullptr);
		std::ios::sync_with_stdio(false);
	};
} fio;

template<typename type>
vector<vector<type>> product(vector<vector<type>> &a, vector<vector<type>> &b){
	vector<vector<type>> res(a.size(),vector<type>(b[0].size(),0));
	
	
	for(int i = 0; i < a.size(); i++){
		for(int j = 0; j < b[0].size(); j++){
			for(int k = 0; k < b.size(); k++){ 
				res[i][j] += a[i][k]*b[k][j];
				res[i][j] %= MOD;
			}
		}
	}
	
	return res;
}

template<typename type>
vector<vector<type>> matrix_power(vector<vector<type>> matrix, long long n){
	vector<vector<type>> res(matrix.size(), vector<type>(matrix.size(),0));
	
	for(int i = 0; i < matrix.size(); i++) res[i][i] = 1;
	
	for( ; n > 0; n >>= 1){
		if(n&1) res = product(res,matrix);
		matrix = product(matrix,matrix);
	}
	
	return res;
}

signed main(){
	cout<<fixed<<setprecision(10);
	
	
	vector<vector<int>> ans, matrix;
	int K, M, N;
	
	cin>>K>>M>>N;
	
	ans.resize(K * K, vector<int>(1));
	matrix.resize(K * K, vector<int>(K*K));
	
	for(int i = 0; i < M; i++){
		int P, Q, R;
		
		cin>>P>>Q>>R;
		P--, Q--, R--;
		
		if(P == 0) ans[Q][0] = 1;
		
		matrix[Q * K + R][P * K + Q] = 1;
	}
	
	matrix = matrix_power(matrix,N-2);
	
	ans = product(matrix,ans);
	
	int sum = 0;
	
	for(int i = 0; i < K; i++){
		sum += ans[i * K][0];
		sum %= MOD;
	}
	
	cout<<sum<<endl;
	
	return 0;
}
0