結果

問題 No.147 試験監督(2)
ユーザー assy1028assy1028
提出日時 2016-12-31 22:30:28
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 2,633 bytes
コンパイル時間 1,674 ms
コンパイル使用メモリ 107,656 KB
実行使用メモリ 10,904 KB
最終ジャッジ日時 2023-08-22 09:01:28
合計ジャッジ時間 3,969 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <iostream>
#include <cstdio>
#include <map>
#include <numeric>
#include <cmath>
#include <set>
#include <sstream>
#include <string>
#include <vector>
#include <queue>
#include <stack>
#include <complex>
#include <string.h>
#include <unordered_set>
#include <unordered_map>
#include <bitset>
#include <iomanip>
#include <sys/time.h>
#include <random>
using namespace std;

#define endl '\n'
#define ALL(v) (v).begin(), (v).end()
#define RALL(v) (v).rbegin(), (v).rend()
#define UNIQ(v) (v).erase(unique((v).begin(), (v).end()), (v).end())

typedef long long ll;
typedef long double ld;
typedef pair<int, int> P;
typedef complex<double> comp;
typedef vector< vector<ld> > matrix;
struct pairhash {
public:
    template<typename T, typename U>
    size_t operator()(const pair<T, U> &x) const {
	size_t seed = hash<T>()(x.first);
	return hash<U>()(x.second) + 0x9e3779b9 + (seed<<6) + (seed>>2);
    }
};
const int inf = 1e9 + 9;
const ll mod = 1e9 + 7;
const double eps = 1e-8;
const double pi = acos(-1);

int n;
ll c[30010];
string d[30010];

typedef vector<int> vec;
typedef vector<vec> mat;

mat mult(mat &A, mat &B) {
    mat C(A.size(), vec(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] = (C[i][j] + A[i][k]*B[k][j] + mod) % mod;
            }
        }
    }
    return C;
}

mat pow(mat A, ll n) {
    mat B(A.size(), vec(A.size()));
    for (int i = 0; i < A.size(); i++)
        B[i][i] = 1;
    while (n > 0) {
        if (n & 1) B = mult(B, A);
        A = mult(A, A);
        n >>= 1;
    }
    return B;
}

ll mod_pow(ll x, ll n) {
    if (x == 0) return 0LL;
    ll res = 1;
    while (n > 0) {
        if (n & 1) res = (res * x) % mod;
        x = (x * x) % mod;
        n >>= 1;
    }
    return res;
}

ll exponent(string e) {
    ll res = 0;
    int l = e.size();
    for (int i = 0; i < l; i++) {
        res = 10 * res + (e[i]-'0');
        res %= (mod-1);
    }
    return res;
}

ll solve() {
    ll res = 1;
    mat A = vector<vector<int> >(2, vector<int>(2, 0));
    A[0][0] = A[0][1] = A[1][0] = 1;
    for (int i = 0; i < n; i++) {
        mat B = pow(A, c[i]-1);
        ll a = (B[0][0] * 2 + B[0][1]) % mod;
        ll e = exponent(d[i]);
        res *= mod_pow(a, e);
        res %= mod;
    }
    return res;
}

void input() {
    cin >> n;
    for (int i = 0; i < n; i++) cin >> c[i] >> d[i];
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << fixed << setprecision(15);

    input();
    cout << solve() << endl;
}
0