結果
問題 | No.1073 無限すごろく |
ユーザー | milanis48663220 |
提出日時 | 2020-06-05 22:01:21 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,317 bytes |
コンパイル時間 | 983 ms |
コンパイル使用メモリ | 92,896 KB |
実行使用メモリ | 8,292 KB |
最終ジャッジ日時 | 2024-05-09 21:10:19 |
合計ジャッジ時間 | 2,210 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 8 ms
8,160 KB |
testcase_01 | AC | 8 ms
8,156 KB |
testcase_02 | AC | 8 ms
8,160 KB |
testcase_03 | AC | 8 ms
8,192 KB |
testcase_04 | AC | 8 ms
8,032 KB |
testcase_05 | AC | 8 ms
8,164 KB |
testcase_06 | AC | 8 ms
8,028 KB |
testcase_07 | AC | 8 ms
8,064 KB |
testcase_08 | AC | 7 ms
8,064 KB |
testcase_09 | AC | 7 ms
8,152 KB |
testcase_10 | AC | 8 ms
8,160 KB |
testcase_11 | AC | 8 ms
8,156 KB |
testcase_12 | AC | 7 ms
8,164 KB |
testcase_13 | AC | 8 ms
8,032 KB |
testcase_14 | AC | 8 ms
8,064 KB |
testcase_15 | AC | 9 ms
8,152 KB |
testcase_16 | AC | 7 ms
8,156 KB |
testcase_17 | AC | 7 ms
8,032 KB |
testcase_18 | AC | 8 ms
8,156 KB |
testcase_19 | AC | 8 ms
8,064 KB |
testcase_20 | AC | 8 ms
8,156 KB |
testcase_21 | AC | 8 ms
8,064 KB |
testcase_22 | AC | 8 ms
8,064 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
ソースコード
#include <iostream> #include <algorithm> #include <iomanip> #include <vector> #include <queue> #include <set> #include <map> #define N_MAX 200002 using namespace std; typedef long long ll; const ll MOD = 1000000007; template <typename T> struct matrix{ int n, m; vector<vector<T>> dat; matrix(int n_, int m_){ n = n_; m = m_; for(int i = 0; i < n; i++){ dat.push_back(vector<T>(m)); } } }; template <typename T> bool prod(matrix<T> a, matrix<T> b, matrix<T> &ans){ if(a.m != b.n) return false; for(int i = 0; i < a.n; i++){ for(int j = 0; j < a.m; j++){ ans.dat[i][j] = 0; for(int k = 0; k < b.m; k++){ ans.dat[i][j] += a.dat[i][k]*b.dat[k][j]; ans.dat[i][j] %= MOD; } } } return true; } template <typename T> void copy_mat(matrix<T> a, matrix<T> &b){ for(int i = 0; i < a.n; i++){ for(int j = 0; j < a.m; j++){ b.dat[i][j] = a.dat[i][j]; } } } template <typename T> void pow(matrix<T> a, ll n, matrix<T> &ans){ matrix<T> buf(a.n, a.n); matrix<T> tmp(a.n, a.n); copy_mat(a, tmp); for(int i = 0; i < a.n; i++) { for(int j = 0; j < a.n; j++){ ans.dat[i][j] = 0; } ans.dat[i][i] = 1; } for(int i = 0; i <= 30; i++){ ll m = (ll)1 << i; if(m&n){ prod(tmp, ans, buf); copy_mat(buf, ans); } prod(tmp, tmp, buf); copy_mat(buf, tmp); } } ll inv[N_MAX],fac[N_MAX],finv[N_MAX]; void init(){ fac[0]=fac[1]=1; finv[0]=finv[1]=1; inv[1]=1; for(int i=2;i<N_MAX;i++){ inv[i]=MOD-inv[MOD%i]*(MOD/i)%MOD; fac[i]=fac[i-1]*(ll) i%MOD; finv[i]=finv[i-1]*inv[i]%MOD; } } int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; init(); matrix<ll> mat(6, 6); matrix<ll> ans(6, 6); mat.dat[0][1] = 1; mat.dat[1][2] = 1; mat.dat[2][3] = 1; mat.dat[3][4] = 1; mat.dat[4][5] = 1; mat.dat[5][0] = inv[6]; mat.dat[5][1] = inv[6]; mat.dat[5][2] = inv[6]; mat.dat[5][3] = inv[6]; mat.dat[5][4] = inv[6]; mat.dat[5][5] = inv[6]; int N; cin >> N; pow(mat, N, ans); cout << ans.dat[5][5] << endl; }