結果

問題 No.1331 Moving Penguin
ユーザー SSRSSSRS
提出日時 2021-01-08 22:02:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 666 bytes
コンパイル時間 2,126 ms
コンパイル使用メモリ 178,124 KB
実行使用メモリ 460,968 KB
最終ジャッジ日時 2024-11-16 11:47:18
合計ジャッジ時間 20,101 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
5,504 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 47 ms
14,592 KB
testcase_05 AC 1,432 ms
404,096 KB
testcase_06 AC 1,419 ms
404,380 KB
testcase_07 AC 1,457 ms
404,224 KB
testcase_08 AC 54 ms
26,972 KB
testcase_09 AC 53 ms
27,136 KB
testcase_10 AC 53 ms
26,996 KB
testcase_11 AC 63 ms
30,208 KB
testcase_12 AC 63 ms
30,252 KB
testcase_13 AC 63 ms
30,208 KB
testcase_14 AC 132 ms
52,200 KB
testcase_15 AC 139 ms
51,984 KB
testcase_16 AC 137 ms
52,028 KB
testcase_17 AC 53 ms
26,304 KB
testcase_18 AC 52 ms
26,112 KB
testcase_19 AC 48 ms
24,960 KB
testcase_20 AC 48 ms
25,344 KB
testcase_21 AC 53 ms
26,128 KB
testcase_22 AC 51 ms
26,056 KB
testcase_23 AC 83 ms
36,560 KB
testcase_24 AC 83 ms
36,440 KB
testcase_25 AC 84 ms
36,480 KB
testcase_26 AC 170 ms
36,476 KB
testcase_27 AC 161 ms
36,060 KB
testcase_28 AC 179 ms
38,784 KB
testcase_29 AC 36 ms
9,856 KB
testcase_30 AC 40 ms
13,440 KB
testcase_31 AC 85 ms
23,424 KB
testcase_32 AC 40 ms
11,520 KB
testcase_33 AC 60 ms
17,152 KB
testcase_34 AC 100 ms
24,664 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 AC 40 ms
13,312 KB
testcase_39 AC 158 ms
35,480 KB
testcase_40 AC 71 ms
20,224 KB
testcase_41 TLE -
testcase_42 AC 262 ms
93,696 KB
testcase_43 AC 266 ms
93,736 KB
testcase_44 AC 269 ms
93,696 KB
testcase_45 AC 97 ms
39,132 KB
testcase_46 AC 97 ms
39,168 KB
testcase_47 AC 97 ms
39,076 KB
testcase_48 AC 46 ms
23,904 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;
      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