結果

問題 No.147 試験監督(2)
ユーザー yuppe19 😺yuppe19 😺
提出日時 2015-09-08 13:49:29
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 123 ms / 2,000 ms
コード長 1,582 bytes
コンパイル時間 522 ms
コンパイル使用メモリ 61,960 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-26 10:07:31
合計ジャッジ時間 1,817 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
4,380 KB
testcase_01 AC 123 ms
4,376 KB
testcase_02 AC 122 ms
4,376 KB
testcase_03 AC 2 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <cstring>
using namespace std;
using i64 = long long;
using mat = i64[2][2];

class range {private: struct I{int x;int operator*(){return x;}bool operator!=(I& lhs){return x<lhs.x;}void operator++(){++x;}};I i,n;
public:range(int n):i({0}),n({n}){}range(int i,int n):i({i}),n({n}){}I& begin(){return i;}I& end(){return n;}};

const int mod = int(1e9) + 7;

void matmul(mat A, mat B, mat res) {
  mat R = {{0, 0}, {0, 0}};
  R[0][0] = (A[0][0]*B[0][0] + A[0][1]*B[1][0]) % mod;
  R[0][1] = (A[0][0]*B[0][1] + A[0][1]*B[1][1]) % mod;
  R[1][0] = (A[1][0]*B[0][0] + A[1][1]*B[1][0]) % mod;
  R[1][1] = (A[1][0]*B[0][1] + A[1][1]*B[1][1]) % mod;
  memcpy(res, R, sizeof(R));
}

void matpow(mat A, i64 n, mat res) {
  mat R = {{1, 0}, {0, 1}};
  for(; n>0; n>>=1) {
    if(n & 1) { matmul(R, A, R); }
    matmul(A, A, A);
  }
  memcpy(res, R, sizeof(R));
}

i64 bigint2modint(string bignum, i64 mod) {
  i64 res = 0;
  for(char c : bignum) {
    (res *= 10) += (c - '0');
    res %= mod;
  }
  return res ? res : mod-1;
}

i64 mod_pow(i64 a, i64 n, i64 mod) {
  i64 res = 1LL;
  for(i64 p=a, x=n; x>0; x>>=1) {
    if(x & 1) { (res *= p) %= mod; }
    (p *= p) %= mod;
  }
  return res;
}

int main(void) {
  int n; scanf("%d", &n);
  i64 res = 1;
  for(int i : range(n)) {
    i64 c; char d[210]; scanf("%lld%s", &c, d);
    mat ma = {{1, 1}, {1, 0}};
    mat powered;
    matpow(ma, c+1, powered);
    i64 dd = bigint2modint(d, mod-1);
    (res *= mod_pow(powered[0][0], dd, mod)) %= mod;
  }
  printf("%d\n", int(res));
  return 0;
}
0