結果
問題 | No.1331 Moving Penguin |
ユーザー | norikame |
提出日時 | 2021-01-08 22:55:45 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,774 bytes |
コンパイル時間 | 3,155 ms |
コンパイル使用メモリ | 212,216 KB |
実行使用メモリ | 1,636,096 KB |
最終ジャッジ日時 | 2024-11-16 14:42:54 |
合計ジャッジ時間 | 88,888 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 10 ms
10,752 KB |
testcase_01 | MLE | - |
testcase_02 | AC | 3 ms
10,496 KB |
testcase_03 | MLE | - |
testcase_04 | MLE | - |
testcase_05 | MLE | - |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | MLE | - |
testcase_21 | MLE | - |
testcase_22 | MLE | - |
testcase_23 | MLE | - |
testcase_24 | MLE | - |
testcase_25 | MLE | - |
testcase_26 | AC | 486 ms
47,104 KB |
testcase_27 | MLE | - |
testcase_28 | AC | 313 ms
49,792 KB |
testcase_29 | MLE | - |
testcase_30 | MLE | - |
testcase_31 | MLE | - |
testcase_32 | MLE | - |
testcase_33 | MLE | - |
testcase_34 | MLE | - |
testcase_35 | MLE | - |
testcase_36 | TLE | - |
testcase_37 | TLE | - |
testcase_38 | AC | 73 ms
13,696 KB |
testcase_39 | AC | 276 ms
38,144 KB |
testcase_40 | AC | 100 ms
23,808 KB |
testcase_41 | TLE | - |
testcase_42 | TLE | - |
testcase_43 | TLE | - |
testcase_44 | TLE | - |
testcase_45 | TLE | - |
testcase_46 | TLE | - |
testcase_47 | TLE | - |
testcase_48 | MLE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; using ull = unsigned long long; #define v(t) vector<t> #define p(t) pair<t, t> #define p2(t, s) pair<t, s> #define vp(t) v(p(t)) #define rep(i, n) for (int i=0,i##_len=((int)(n)); i<i##_len; ++i) #define rep2(i, a, n) for (int i=((int)(a)),i##_len=((int)(n)); i<=i##_len; ++i) #define repr(i, n) for (int i=((int)(n)-1); i>=0; --i) #define rep2r(i, a, n) for (int i=((int)(n)),i##_len=((int)(a)); i>=i##_len; --i) #define repi(itr, c) for (__typeof((c).begin()) itr=(c).begin(); itr!=(c).end(); ++itr) #define repir(itr, c) for (__typeof((c).rbegin()) itr=(c).rbegin(); itr!=(c).rend(); ++itr) #define sz(x) ((int)(x).size()) #define all(x) (x).begin(), (x).end() #define rall(x) (x).rbegin(), (x).rend() #define SORT(v, n) sort(v, v+n); #define VSORT(v) sort(v.begin(), v.end()); #define RSORT(x) sort(rall(x)); #define pb push_back #define eb emplace_back #define INF (1e9) #define LINF (1e18) #define PI (acos(-1)) #define EPS (1e-7) #define DEPS (1e-10) const ll mod = (ll)(1e9+7); int main(){ int n; cin >> n; v(int) a(n); rep(i, n) cin >> a[i]; v(ll) dp(n); dp[0] = 1; v(set<p2(int,ll)>) add(n); rep(i, n) { auto itr = add[i].begin(); while (itr!=add[i].end()) { dp[i] = (dp[i] + itr->second) % mod; if (i+itr->first > n-1) itr = add[i].erase(itr); else { add[i+itr->first].emplace(itr->first, itr->second); ++itr; } } if (i+1<n && a[i]!=1) dp[i+1] = (dp[i+1] + dp[i]) % mod; if (i+a[i] <= n-1) add[i+a[i]].emplace(a[i], dp[i]); } cout << dp[n-1] << endl; return 0; }