結果
問題 | No.1050 Zero (Maximum) |
ユーザー | ok |
提出日時 | 2020-05-08 22:46:19 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 28 ms / 2,000 ms |
コード長 | 1,538 bytes |
コンパイル時間 | 990 ms |
コンパイル使用メモリ | 91,996 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-04 01:03:17 |
合計ジャッジ時間 | 1,795 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 7 ms
6,940 KB |
testcase_03 | AC | 5 ms
6,940 KB |
testcase_04 | AC | 18 ms
6,940 KB |
testcase_05 | AC | 19 ms
6,944 KB |
testcase_06 | AC | 9 ms
6,940 KB |
testcase_07 | AC | 10 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 5 ms
6,944 KB |
testcase_10 | AC | 23 ms
6,940 KB |
testcase_11 | AC | 16 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,944 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 25 ms
6,940 KB |
testcase_17 | AC | 28 ms
6,944 KB |
ソースコード
#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); int M, K; vector<int> num; vector<vector<int>> ans, matrix; cin>>M>>K; ans.resize(M,vector<int>(1)); matrix.resize(M,vector<int>(M)); for(int i = 0; i < M; i++){ for(int j = 0; j < M; j++){ matrix[i*j%M][i]++; matrix[(i+j)%M][i]++; } } ans[0][0] = 1; matrix = matrix_power(matrix,K); ans = product(matrix,ans); cout<<ans[0][0]<<endl; return 0; }