結果

問題 No.793 うし数列 2
ユーザー tsutajtsutaj
提出日時 2019-02-22 21:37:41
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 3,895 bytes
コンパイル時間 1,513 ms
コンパイル使用メモリ 116,996 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-25 06:02:24
合計ジャッジ時間 2,138 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #
プレゼンテーションモードにする

// #define _GLIBCXX_DEBUG // for STL debug (optional)
#include <iostream>
#include <iomanip>
#include <cstdio>
#include <string>
#include <cstring>
#include <deque>
#include <list>
#include <queue>
#include <stack>
#include <vector>
#include <utility>
#include <algorithm>
#include <map>
#include <set>
#include <complex>
#include <cmath>
#include <limits>
#include <cfloat>
#include <climits>
#include <ctime>
#include <cassert>
#include <numeric>
#include <fstream>
#include <functional>
#include <bitset>
using namespace std;
#define debug(...) fprintf(stderr, __VA_ARGS__)
#define int long long int
template<typename T> void chmax(T &a, T b) {a = max(a, b);}
template<typename T> void chmin(T &a, T b) {a = min(a, b);}
template<typename T> void chadd(T &a, T b) {a = a + b;}
typedef pair<int, int> pii;
typedef long long ll;
int dx[] = {0, 0, 1, -1};
int dy[] = {1, -1, 0, 0};
const ll INF = 1001001001001001LL;
const ll MOD = 1000000007LL;
//
// Verified: TopCoder SRM 704 Div.2 (ModEquationEasy)
// ()
// Matrix Library Begin (C++11)
template <typename T>
using Matrix = vector< vector<T> >;
template <typename T>
void init_mat(Matrix<T> &A, int h, int w) {
A.resize(h, vector<T>(w, 0));
}
template <typename T>
Matrix<T> calc_mat(Matrix<T> A, Matrix<T> B) {
Matrix<T> C(A.size(), vector<T>(B[0].size()));
for(int i=0; i<A.size(); i++) {
for(int k=0; k<B.size(); k++) {
for(int j=0; j<B[0].size(); j++) {
// C[i][j] += A[i][k] * B[k][j]; // mod
C[i][j] = (C[i][j] + A[i][k] * B[k][j]) % MOD; // mod
}
}
}
return C;
}
template <typename T>
Matrix<T> mat_pow(Matrix<T> A, ll n) {
Matrix<T> B(A.size(), vector<T>(A.size()));
for(int i=0; i<A.size(); i++) B[i][i] = 1;
while(n > 0) {
if(n & 1) B = calc_mat(B, A);
A = calc_mat(A, A);
n >>= 1;
}
return B;
}
// N * M
// double
// 2 ( xor ) Verify
int mat_rank(Matrix<double> A) {
int N = A.size(), M = A[0].size();
int res = 0;
for(int i=0; i<M; i++) {
//
double max_elem = 0; int piv = -1;
for(int j=res; j<N; j++) {
if(abs(A[j][i]) > max_elem) {
max_elem = abs(A[j][i]);
piv = j;
}
}
// res piv
if(piv < 0) continue;
swap(A[res], A[piv]);
// res
// F_2
{
double div = A[res][i];
for(int k=0; k<M; k++) {
A[res][k] = 1.0 * A[res][k] / div;
}
}
for(int j=0; j<N; j++) {
if(j == res) continue;
assert(A[res][i] != 0);
double mul = A[j][i];
for(int k=0; k<M; k++) {
// xor
A[j][k] = A[j][k] - mul * A[res][k];
}
}
res++;
}
return res;
}
// Matrix Library End
signed main() {
int N; cin >> N;
Matrix<int> mat;
init_mat(mat, 3, 3);
mat[0] = vector<int>{10, 0, 3};
mat[1] = vector<int>{1, 0, 0};
mat[2] = vector<int>{0, 0, 1};
Matrix<int> vec;
init_mat(vec, 3, 1);
vec[0][0] = 133, vec[1][0] = 13, vec[2][0] = 1;
if(N == 1) cout << 13 << endl;
else {
N -= 2;
mat = mat_pow(mat, N);
vec = calc_mat(mat, vec);
cout << vec[0][0] << endl;
}
return 0;
}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
0