結果

問題 No.1331 Moving Penguin
ユーザー SSRSSSRS
提出日時 2021-01-08 22:04:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 697 bytes
コンパイル時間 1,819 ms
コンパイル使用メモリ 179,528 KB
実行使用メモリ 460,828 KB
最終ジャッジ日時 2024-04-28 03:06:56
合計ジャッジ時間 17,369 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 41 ms
14,588 KB
testcase_05 AC 1,368 ms
404,068 KB
testcase_06 AC 1,346 ms
404,468 KB
testcase_07 AC 1,304 ms
404,096 KB
testcase_08 AC 48 ms
27,116 KB
testcase_09 AC 46 ms
27,024 KB
testcase_10 AC 49 ms
27,068 KB
testcase_11 AC 55 ms
30,152 KB
testcase_12 AC 65 ms
30,196 KB
testcase_13 AC 56 ms
30,168 KB
testcase_14 AC 120 ms
52,060 KB
testcase_15 AC 119 ms
51,984 KB
testcase_16 AC 139 ms
51,988 KB
testcase_17 AC 48 ms
26,296 KB
testcase_18 AC 43 ms
26,140 KB
testcase_19 AC 41 ms
24,956 KB
testcase_20 AC 41 ms
25,276 KB
testcase_21 AC 44 ms
26,068 KB
testcase_22 AC 44 ms
26,020 KB
testcase_23 AC 73 ms
36,448 KB
testcase_24 AC 79 ms
36,364 KB
testcase_25 AC 74 ms
36,404 KB
testcase_26 AC 126 ms
36,424 KB
testcase_27 AC 133 ms
36,064 KB
testcase_28 AC 137 ms
38,736 KB
testcase_29 AC 35 ms
9,688 KB
testcase_30 AC 35 ms
13,440 KB
testcase_31 AC 71 ms
23,364 KB
testcase_32 AC 33 ms
11,520 KB
testcase_33 AC 49 ms
17,152 KB
testcase_34 AC 78 ms
24,548 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 AC 35 ms
13,312 KB
testcase_39 AC 132 ms
35,480 KB
testcase_40 AC 56 ms
20,352 KB
testcase_41 TLE -
testcase_42 AC 225 ms
93,652 KB
testcase_43 AC 224 ms
93,684 KB
testcase_44 AC 224 ms
93,592 KB
testcase_45 AC 83 ms
39,104 KB
testcase_46 AC 84 ms
39,092 KB
testcase_47 AC 87 ms
39,168 KB
testcase_48 AC 45 ms
23,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const long long MOD = 1000000007;
int main(){
  int N;
  cin >> N;
  vector<int> A(N);
  for (int i = 0; i < N; i++){
    cin >> A[i];
  }
  vector<long long> dp(N, 0);
  dp[0] = 1;
  vector<unordered_map<int, long long>> next(N);
  for (int i = 0; i < N; i++){
    for (auto P : next[i]){
      dp[i] += P.second;
      if (i + P.first < N){
        next[i + P.first][P.first] += P.second;
      }
    }
    dp[i] %= MOD;
    if (i < N - 1 && A[i] != 1){
      dp[i + 1] += dp[i];
      if (dp[i + 1] >= MOD){
        dp[i + 1] %= MOD;
      }
    }
    if (i + A[i] < N){
      next[i + A[i]][A[i]] += dp[i];
    }
  }
  cout << dp[N - 1] << endl;
}
0