結果

問題 No.1331 Moving Penguin
ユーザー SSRSSSRS
提出日時 2021-01-08 22:40:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 884 bytes
コンパイル時間 2,671 ms
コンパイル使用メモリ 193,524 KB
実行使用メモリ 134,812 KB
最終ジャッジ日時 2024-04-28 04:09:42
合計ジャッジ時間 16,926 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
13,764 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 28 ms
14,616 KB
testcase_05 AC 931 ms
107,612 KB
testcase_06 AC 924 ms
107,684 KB
testcase_07 AC 923 ms
107,692 KB
testcase_08 AC 38 ms
20,932 KB
testcase_09 AC 38 ms
20,720 KB
testcase_10 AC 39 ms
20,844 KB
testcase_11 AC 43 ms
20,668 KB
testcase_12 AC 43 ms
20,768 KB
testcase_13 AC 43 ms
20,772 KB
testcase_14 AC 82 ms
20,788 KB
testcase_15 AC 81 ms
20,852 KB
testcase_16 AC 83 ms
20,868 KB
testcase_17 AC 36 ms
20,660 KB
testcase_18 AC 36 ms
20,772 KB
testcase_19 AC 35 ms
20,664 KB
testcase_20 AC 35 ms
20,796 KB
testcase_21 AC 37 ms
20,732 KB
testcase_22 AC 36 ms
20,692 KB
testcase_23 AC 53 ms
20,776 KB
testcase_24 AC 53 ms
20,816 KB
testcase_25 AC 53 ms
20,724 KB
testcase_26 AC 134 ms
21,168 KB
testcase_27 AC 128 ms
21,044 KB
testcase_28 AC 148 ms
21,636 KB
testcase_29 AC 16 ms
9,892 KB
testcase_30 AC 30 ms
9,088 KB
testcase_31 AC 70 ms
13,820 KB
testcase_32 AC 25 ms
8,320 KB
testcase_33 AC 43 ms
11,092 KB
testcase_34 AC 77 ms
15,080 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 AC 26 ms
9,344 KB
testcase_39 AC 120 ms
20,780 KB
testcase_40 AC 55 ms
12,156 KB
testcase_41 TLE -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx")
#pragma GCC optimize("unroll-loops")
#pragma GCC optimize("O3")
#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<unordered_map<int, long long>> next(N);
  for (int i = 0; i < N; i++){
    for (auto &&P : next[i]){
      P.second %= MOD;
      dp[i] += P.second;
      if (i + P.first < N){
        next[i + P.first][P.first] += P.second;
      }
    }
    dp[i] %= MOD;
    next[i].clear();
    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] << "\n";
}
0