結果
問題 | No.194 フィボナッチ数列の理解(1) |
ユーザー | snuke |
提出日時 | 2015-04-26 22:20:11 |
言語 | C++11 (gcc 11.4.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 3,012 bytes |
コンパイル時間 | 749 ms |
コンパイル使用メモリ | 85,944 KB |
実行使用メモリ | 813,696 KB |
最終ジャッジ日時 | 2024-07-05 02:56:43 |
合計ジャッジ時間 | 3,210 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 11 ms
6,940 KB |
testcase_03 | AC | 3 ms
6,940 KB |
testcase_04 | AC | 5 ms
6,944 KB |
testcase_05 | AC | 4 ms
6,944 KB |
testcase_06 | AC | 5 ms
6,944 KB |
testcase_07 | AC | 7 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 6 ms
6,940 KB |
testcase_10 | AC | 4 ms
6,940 KB |
testcase_11 | AC | 4 ms
6,940 KB |
testcase_12 | AC | 5 ms
6,944 KB |
testcase_13 | AC | 3 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 9 ms
6,940 KB |
testcase_16 | AC | 8 ms
6,940 KB |
testcase_17 | AC | 3 ms
6,944 KB |
testcase_18 | AC | 8 ms
6,944 KB |
testcase_19 | AC | 11 ms
6,940 KB |
testcase_20 | AC | 2 ms
6,940 KB |
testcase_21 | MLE | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
ソースコード
#include <cstdio> #include <algorithm> #include <stack> #include <queue> #include <deque> #include <vector> #include <string> #include <string.h> #include <cstdlib> #include <ctime> #include <cmath> #include <map> #include <set> #include <iostream> #include <sstream> #include <cctype> #define fi first #define se second #define rep(i,n) for(int i = 0; i < n; ++i) #define rrep(i,n) for(int i = 1; i <= n; ++i) #define drep(i,n) for(int i = n-1; i >= 0; --i) #define gep(i,g,j) for(int i = g.head[j]; i != -1; i = g.e[i].next) #define each(it,c) for(__typeof((c).begin()) it=(c).begin();it!=(c).end();it++) #define rng(a) a.begin(),a.end() #define maxs(x,y) x = max(x,y) #define mins(x,y) x = min(x,y) #define pb push_back #define sz(x) (int)(x).size() #define pcnt __builtin_popcount #define snuke srand((unsigned)clock()+(unsigned)time(NULL)); using namespace std; typedef long long int ll; typedef pair<int,int> P; typedef vector<int> vi; inline int in() { int x; scanf("%d",&x); return x;} inline void priv(vi& a) { rep(i,sz(a)) printf("%d%c",a[i],i==sz(a)-1?'\n':' ');} const int MX = 100005, INF = 1000010000; const ll LINF = 1000000000000000000ll; const double eps = 1e-10; const int di[] = {-1,0,1,0}, dj[] = {0,-1,0,1}; //^<v> // Mod int const int mod = 1000000007; struct mint{ ll x; mint():x(0){} mint(ll x):x((x%mod+mod)%mod){} mint operator+=(const mint& a){ if((x+=a.x)>=mod) x-=mod; return *this;} mint operator-=(const mint& a){ if((x+=mod-a.x)>=mod) x-=mod; return *this;} mint operator*=(const mint& a){ (x*=a.x)%=mod; return *this;} mint operator+(const mint& a)const{ return mint(*this) += a;} mint operator-(const mint& a)const{ return mint(*this) -= a;} mint operator*(const mint& a)const{ return mint(*this) *= a;} bool operator==(const mint& a)const{ return x == a.x;} }; // // Matrix struct mat{ //typedef double TT; typedef mint TT; int h, w; vector<vector<TT> > d; mat(){} mat(int h, int w, TT v=0):h(h),w(w),d(h,vector<TT>(w,v)){} void fil(TT v=0){ rep(i,h)rep(j,w) d[i][j] = v;} void uni(){ rep(i,h)rep(j,w) d[i][j] = (i==j);} mat operator+(const mat& a)const{ // same size mat res(h,w); rep(i,h)rep(j,w) res.d[i][j] = d[i][j]+a.d[i][j]; return res; } mat operator-(const mat& a)const{ // same size mat res(h,w); rep(i,h)rep(j,w) res.d[i][j] = d[i][j]-a.d[i][j]; return res; } mat operator*(const mat& a)const{ // w = a.h mat res(h,a.w); rep(i,h)rep(k,w)rep(j,a.w) res.d[i][j] += d[i][k]*a.d[k][j]; return res; } mat power(ll a){ // h = w if(a == 0){ mat res(h,w); res.uni(); return res; } mat res = power(a/2); res = res*res; if(a&1) res = res*(*this); return res; } }; // int main(){ int n; ll k; cin >> n >> k; mat m(n+1,n+1), m2, a(n+1,1), a2; rep(i,n) { cin >> a.d[i][0].x; } rep(i,n-1) m.d[i][i+1] = 1; rep(i,n) m.d[n-1][i] = 1; m.d[n][n] = m.d[n][0] = 1; m2 = m.power(k); m = m.power(k-1); a2 = m2*a; a = m*a; cout << a.d[0][0].x << " " << a2.d[n][0].x << endl; return 0; }