結果
問題 | No.1073 無限すごろく |
ユーザー | 沙耶花 |
提出日時 | 2020-06-05 21:55:58 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 2,578 bytes |
コンパイル時間 | 1,981 ms |
コンパイル使用メモリ | 212,588 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-09 20:59:58 |
合計ジャッジ時間 | 2,818 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 1 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | AC | 2 ms
5,376 KB |
testcase_27 | AC | 1 ms
5,376 KB |
testcase_28 | AC | 2 ms
5,376 KB |
testcase_29 | AC | 2 ms
5,376 KB |
testcase_30 | AC | 1 ms
5,376 KB |
testcase_31 | AC | 2 ms
5,376 KB |
testcase_32 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define modulo 1000000007 #define mod(mod_x) ((((long long)mod_x+modulo))%modulo) #define Inf 1000000000000000010 int beki(int a,int b){ int x = 1; while(b!=0){ if(b&1){ x=mod(x*a); } a=mod(a*a); b>>=1; } return x; } int gyakugen(int a){ return beki(a,modulo-2); } struct matrix{ vector<vector<long long>> value; matrix(int height,int width){ value.resize(height,vector<long long>(width,0)); if(height==width){ for(int i=0;i<get_width();i++){ value[i][i] = 1; } } } void resize(int height,int width){ value.resize(height,vector<long long>(width,0)); for(int i=0;i<get_width();i++){ value[i][i] = 1; } } void set_value(vector<vector<long long>> &V){ value = V; } void set_value(initializer_list<long long> list){ auto it = list.begin(); for(int i=0;i<get_height();i++){ for(int j=0;j<get_width();j++){ value[i][j]=*it; if(i!=get_height()-1||j!=get_width()-1)it++; } } } int get_width(){ return value[0].size(); } int get_height(){ return value.size(); } void print(){ for(int i=0;i<get_height();i++){ for(int j=0;j<get_width();j++){ if(j!=0)cout<<' '; cout<<value[i][j]; } cout<<endl; } } }; matrix matrix_multiple(matrix &A,matrix &B){ matrix R(A.get_height(),B.get_width()); int multi_cnt; if(A.get_width()!=B.get_height()){ assert(false); } else multi_cnt = A.get_width(); for(int i=0;i<R.get_height();i++){ for(int j=0;j<R.get_width();j++){ R.value[i][j]=0; for(int k=0;k<multi_cnt;k++){ R.value[i][j] = mod(R.value[i][j] + mod(A.value[i][k] * B.value[k][j])); } } } return R; } matrix matrix_beki(matrix A,long long cnt){ if(A.get_width()!=A.get_height())assert(0); matrix R(A.get_width(),A.get_width()); while(cnt!=0){ if(cnt&1){ R=matrix_multiple(R,A); } A=matrix_multiple(A,A); cnt>>=1; } return R; } long long f(long long x){ vector<long long> dp(7,0); dp[0] = 1; for(int i=0;i<dp.size();i++){ for(int j=1;j<=6;j++){ if(i+j>=dp.size())continue; dp[i+j] = mod(dp[i+j] + mod(dp[i] * gyakugen(6))); } } return dp[x]; } int main(){ long long N; cin>>N; if(N<=6){ cout<<f(N)<<endl; return 0; } matrix A(6,6); int t = gyakugen(6); A.set_value({ t,t,t,t,t,t, 1,0,0,0,0,0, 0,1,0,0,0,0, 0,0,1,0,0,0, 0,0,0,1,0,0, 0,0,0,0,1,0 }); N-=6; A = matrix_beki(A,N); matrix B(6,1); B.set_value({ f(6),f(5),f(4),f(3),f(2),f(1) }); B = matrix_multiple(A,B); cout<<B.value[0][0]<<endl; return 0; }