結果

問題 No.1331 Moving Penguin
ユーザー SSRSSSRS
提出日時 2021-01-08 22:33:44
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
(最新)
TLE  
(最初)
実行時間 -
コード長 833 bytes
コンパイル時間 2,523 ms
コンパイル使用メモリ 192,900 KB
実行使用メモリ 669,312 KB
最終ジャッジ日時 2024-11-16 13:29:32
合計ジャッジ時間 22,847 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
11,008 KB
testcase_01 MLE -
testcase_02 AC 1 ms
10,496 KB
testcase_03 MLE -
testcase_04 AC 41 ms
20,736 KB
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 35 ms
21,504 KB
testcase_09 AC 32 ms
21,504 KB
testcase_10 AC 31 ms
21,632 KB
testcase_11 AC 40 ms
27,904 KB
testcase_12 AC 39 ms
27,904 KB
testcase_13 AC 40 ms
27,776 KB
testcase_14 AC 113 ms
71,552 KB
testcase_15 AC 113 ms
71,424 KB
testcase_16 AC 115 ms
71,424 KB
testcase_17 AC 27 ms
19,968 KB
testcase_18 AC 27 ms
19,712 KB
testcase_19 AC 24 ms
17,536 KB
testcase_20 AC 24 ms
18,048 KB
testcase_21 AC 26 ms
19,712 KB
testcase_22 AC 25 ms
19,584 KB
testcase_23 AC 60 ms
40,320 KB
testcase_24 AC 60 ms
40,320 KB
testcase_25 AC 61 ms
40,192 KB
testcase_26 AC 136 ms
42,240 KB
testcase_27 AC 132 ms
41,472 KB
testcase_28 AC 148 ms
46,080 KB
testcase_29 AC 15 ms
9,088 KB
testcase_30 AC 30 ms
14,720 KB
testcase_31 AC 69 ms
26,880 KB
testcase_32 AC 28 ms
12,416 KB
testcase_33 AC 45 ms
19,200 KB
testcase_34 AC 74 ms
27,776 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 AC 33 ms
14,336 KB
testcase_39 AC 131 ms
40,832 KB
testcase_40 AC 59 ms
23,680 KB
testcase_41 TLE -
testcase_42 AC 242 ms
131,712 KB
testcase_43 AC 237 ms
131,584 KB
testcase_44 AC 235 ms
131,672 KB
testcase_45 AC 72 ms
45,696 KB
testcase_46 AC 72 ms
45,844 KB
testcase_47 AC 70 ms
45,824 KB
testcase_48 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("unroll-loops")
#pragma GCC optimize("Ofast")
#include <bits/stdc++.h>
using namespace std;
const long long MOD = 1000000007;
int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  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;
      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