結果

問題 No.1331 Moving Penguin
ユーザー SSRSSSRS
提出日時 2021-01-08 21:53:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 656 bytes
コンパイル時間 2,128 ms
コンパイル使用メモリ 177,812 KB
実行使用メモリ 1,203,036 KB
最終ジャッジ日時 2024-11-16 11:20:40
合計ジャッジ時間 24,188 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
11,008 KB
testcase_01 MLE -
testcase_02 AC 2 ms
10,624 KB
testcase_03 MLE -
testcase_04 AC 57 ms
22,180 KB
testcase_05 MLE -
testcase_06 MLE -
testcase_07 MLE -
testcase_08 AC 42 ms
21,760 KB
testcase_09 AC 41 ms
21,632 KB
testcase_10 AC 40 ms
21,556 KB
testcase_11 AC 70 ms
27,776 KB
testcase_12 AC 55 ms
27,776 KB
testcase_13 AC 50 ms
27,904 KB
testcase_14 AC 126 ms
71,552 KB
testcase_15 AC 130 ms
71,552 KB
testcase_16 AC 138 ms
71,488 KB
testcase_17 AC 40 ms
20,096 KB
testcase_18 AC 37 ms
19,696 KB
testcase_19 AC 35 ms
17,408 KB
testcase_20 AC 34 ms
18,092 KB
testcase_21 AC 35 ms
19,640 KB
testcase_22 AC 38 ms
19,560 KB
testcase_23 AC 72 ms
40,320 KB
testcase_24 AC 75 ms
40,320 KB
testcase_25 AC 72 ms
40,268 KB
testcase_26 AC 164 ms
42,216 KB
testcase_27 AC 153 ms
41,600 KB
testcase_28 AC 174 ms
46,160 KB
testcase_29 AC 36 ms
9,088 KB
testcase_30 AC 39 ms
14,720 KB
testcase_31 AC 81 ms
26,880 KB
testcase_32 AC 34 ms
12,160 KB
testcase_33 AC 55 ms
19,328 KB
testcase_34 AC 93 ms
27,776 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 AC 56 ms
14,336 KB
testcase_39 AC 171 ms
40,788 KB
testcase_40 AC 88 ms
23,680 KB
testcase_41 TLE -
testcase_42 AC 262 ms
131,720 KB
testcase_43 AC 274 ms
131,584 KB
testcase_44 AC 261 ms
131,652 KB
testcase_45 AC 124 ms
45,952 KB
testcase_46 AC 87 ms
45,860 KB
testcase_47 AC 97 ms
45,824 KB
testcase_48 MLE -
権限があれば一括ダウンロードができます

ソースコード

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<map<int, long long>> next(N);
  for (int i = 0; i < N; i++){
    for (auto P : next[i]){
      dp[i] += P.second;
      dp[i] %= MOD;
      if (i + P.first < N){
        next[i + P.first][P.first] += P.second % MOD;
      }
    }
    if (i < N - 1 && A[i] != 1){
      dp[i + 1] += dp[i];
      dp[i + 1] %= MOD;
    }
    if (i + A[i] < N){
      next[i + A[i]][A[i]] += dp[i];
    }
  }
  cout << dp[N - 1] << endl;
}
0