結果

問題 No.1331 Moving Penguin
ユーザー kmjpkmjp
提出日時 2021-01-08 22:51:09
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,333 bytes
コンパイル時間 2,225 ms
コンパイル使用メモリ 208,112 KB
実行使用メモリ 139,904 KB
最終ジャッジ日時 2024-11-16 14:26:40
合計ジャッジ時間 17,365 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
15,744 KB
testcase_01 AC 10 ms
14,464 KB
testcase_02 AC 11 ms
14,464 KB
testcase_03 AC 11 ms
14,336 KB
testcase_04 AC 32 ms
19,552 KB
testcase_05 AC 1,013 ms
113,024 KB
testcase_06 AC 993 ms
112,896 KB
testcase_07 AC 997 ms
113,152 KB
testcase_08 AC 44 ms
26,112 KB
testcase_09 AC 45 ms
26,112 KB
testcase_10 AC 46 ms
26,112 KB
testcase_11 AC 50 ms
26,240 KB
testcase_12 AC 49 ms
26,240 KB
testcase_13 AC 49 ms
26,112 KB
testcase_14 AC 94 ms
26,112 KB
testcase_15 AC 94 ms
26,112 KB
testcase_16 AC 91 ms
26,240 KB
testcase_17 AC 43 ms
26,112 KB
testcase_18 AC 42 ms
26,112 KB
testcase_19 AC 39 ms
26,112 KB
testcase_20 AC 42 ms
26,240 KB
testcase_21 AC 45 ms
26,112 KB
testcase_22 AC 44 ms
26,112 KB
testcase_23 AC 62 ms
26,112 KB
testcase_24 AC 63 ms
26,112 KB
testcase_25 AC 66 ms
26,112 KB
testcase_26 AC 133 ms
31,232 KB
testcase_27 AC 135 ms
31,232 KB
testcase_28 AC 146 ms
31,616 KB
testcase_29 AC 44 ms
29,184 KB
testcase_30 AC 46 ms
19,840 KB
testcase_31 AC 72 ms
24,576 KB
testcase_32 AC 33 ms
19,072 KB
testcase_33 AC 50 ms
21,888 KB
testcase_34 AC 87 ms
25,600 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 AC 39 ms
20,096 KB
testcase_39 AC 135 ms
31,104 KB
testcase_40 AC 66 ms
22,784 KB
testcase_41 TLE -
testcase_42 AC 197 ms
38,016 KB
testcase_43 AC 196 ms
38,016 KB
testcase_44 AC 198 ms
37,888 KB
testcase_45 AC 70 ms
26,240 KB
testcase_46 AC 68 ms
26,112 KB
testcase_47 AC 68 ms
26,240 KB
testcase_48 AC 38 ms
26,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define FORR2(x,y,arr) for(auto& [x,y]:arr)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;}
template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;}
//-------------------------------------------------------

int N;
int A[101010];
unordered_map<int,int> dp[201010];
ll S[101010];
const ll mo=1000000007;
void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N;
	S[0]=1;
	for(i=1;i<=N;i++) {
		cin>>x;
		ll sum=0;
		FORR(a,dp[i]) {
			sum+=a.second;
			if(i+a.first<=N) {
				dp[i+a.first][a.first]+=a.second;
				if(dp[i+a.first][a.first]>=mo) dp[i+a.first][a.first]-=mo;
			}
		}
		sum+=S[i-1];
		S[i]=sum%mo;
		
		
		if(i==N) cout<<S[i]<<endl;
		
		if(x==1) (dp[i+2][1]+=S[i])%=mo;
		else (dp[i+x][x]+=S[i])%=mo;
		dp[i].clear();
		
	}
	
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0