結果

問題 No.1261 数字集め
ユーザー SSRSSSRS
提出日時 2020-10-16 23:20:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,116 bytes
コンパイル時間 2,032 ms
コンパイル使用メモリ 177,300 KB
実行使用メモリ 70,400 KB
最終ジャッジ日時 2024-07-21 04:26:54
合計ジャッジ時間 37,419 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 116 ms
12,672 KB
testcase_02 AC 240 ms
22,912 KB
testcase_03 AC 264 ms
30,464 KB
testcase_04 AC 164 ms
18,176 KB
testcase_05 AC 369 ms
45,952 KB
testcase_06 AC 188 ms
21,504 KB
testcase_07 AC 289 ms
36,608 KB
testcase_08 AC 183 ms
25,728 KB
testcase_09 AC 249 ms
33,664 KB
testcase_10 AC 10 ms
5,376 KB
testcase_11 AC 315 ms
29,184 KB
testcase_12 AC 283 ms
27,136 KB
testcase_13 AC 273 ms
29,312 KB
testcase_14 AC 33 ms
7,040 KB
testcase_15 AC 144 ms
18,816 KB
testcase_16 AC 278 ms
35,712 KB
testcase_17 AC 292 ms
37,504 KB
testcase_18 AC 140 ms
17,664 KB
testcase_19 AC 249 ms
25,344 KB
testcase_20 AC 40 ms
7,808 KB
testcase_21 AC 330 ms
30,592 KB
testcase_22 AC 332 ms
30,592 KB
testcase_23 AC 336 ms
30,592 KB
testcase_24 AC 457 ms
53,632 KB
testcase_25 AC 459 ms
53,632 KB
testcase_26 AC 454 ms
53,760 KB
testcase_27 AC 456 ms
53,760 KB
testcase_28 AC 458 ms
53,760 KB
testcase_29 AC 455 ms
53,760 KB
testcase_30 AC 457 ms
53,632 KB
testcase_31 AC 461 ms
53,632 KB
testcase_32 AC 461 ms
53,760 KB
testcase_33 AC 457 ms
53,632 KB
testcase_34 AC 463 ms
53,760 KB
testcase_35 AC 461 ms
53,760 KB
testcase_36 AC 464 ms
53,632 KB
testcase_37 AC 453 ms
53,632 KB
testcase_38 AC 456 ms
53,760 KB
testcase_39 AC 452 ms
53,760 KB
testcase_40 AC 459 ms
53,760 KB
testcase_41 AC 455 ms
53,632 KB
testcase_42 AC 458 ms
53,760 KB
testcase_43 AC 459 ms
53,760 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
testcase_66 WA -
testcase_67 WA -
testcase_68 WA -
testcase_69 WA -
testcase_70 WA -
testcase_71 WA -
testcase_72 WA -
testcase_73 WA -
testcase_74 WA -
testcase_75 WA -
testcase_76 WA -
testcase_77 WA -
testcase_78 WA -
testcase_79 WA -
testcase_80 WA -
testcase_81 WA -
testcase_82 WA -
testcase_83 WA -
testcase_84 WA -
testcase_85 WA -
testcase_86 WA -
testcase_87 WA -
testcase_88 WA -
testcase_89 WA -
testcase_90 WA -
testcase_91 WA -
testcase_92 WA -
testcase_93 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const long long MOD = 1000000007;
array<array<long long, 3>, 3> matmul(array<array<long long, 3>, 3> &A, array<array<long long, 3>, 3> &B){
  array<array<long long, 3>, 3> ans;
  for (int i = 0; i < 3; i++){
    for (int j = 0; j < 3; j++){
      ans[i][j] = 0;
    }
  }
  for (int i = 0; i < 3; i++){
    for (int k = 0; k < 3; k++){
      for (int j = 0; j < 3; j++){
        ans[i][k] += A[i][j] * B[j][k];
      }
      ans[i][k] %= MOD;
    }
  }
  return ans;
}
array<array<long long, 3>, 3> matexp(array<array<long long, 3>, 3> &A, long long b){
  array<array<long long, 3>, 3> ans;
  for (int i = 0; i < 3; i++){
    for (int j = 0; j < 3; j++){
      ans[i][j] = i == j;
    }
  }
  while (b > 0){
    if (b % 2 == 1){
      ans = matmul(ans, A);
    }
    A = matmul(A, A);
    b /= 2;
  }
  return ans;
}
long long get(vector<int> &A, int M, int a, int b){
  array<array<long long, 3>, 3> mat;
  mat[0][0] = A[a - 1] - 1;
  mat[0][1] = 1;
  mat[0][2] = 0;
  mat[1][0] = 0;
  mat[1][1] = A[b - 1] - 1;
  mat[1][2] = 1;
  mat[2][0] = 0;
  mat[2][1] = 0;
  mat[2][2] = A.back() - 1;
  mat = matexp(mat, M - 1);
  return mat[0][2];
}
int main(){
  int N, M;
  cin >> N >> M;
  vector<int> A(N, 0);
  for (int i = 1; i < N; i++){
    cin >> A[i];
  }
  long long ans = 0;
  vector<vector<int>> prev(N + 1);
  for (int a = 2; a < N; a++){
    if (N % a == 0){
      for (int b = a * 2; b < N; b += a){
        prev[b].push_back(a);
        if (N % b == 0){
          ans += get(A, M, a, b);
          if (ans >= MOD){
            ans -= MOD;
          }
        }
      }
    }
  }
  cout << ans << endl;
  int Q;
  cin >> Q;
  set<int> st;
  for (int i = 0; i < Q; i++){
    int X, Y;
    cin >> X >> Y;
    if (Y == N){
      for (int a : prev[X]){
        ans += get(A, M, a, X);
        if (ans >= MOD){
          ans -= MOD;
        }
      }
      st.insert(X);
    } else {
      if (st.count(Y)){
        ans += get(A, M, X, Y);
        if (ans >= MOD){
          ans -= MOD;
        }
      }
    }
    prev[Y].push_back(X);
    cout << ans << endl;
  }
}
0