結果

問題 No.1331 Moving Penguin
ユーザー kmjpkmjp
提出日時 2021-01-08 22:46:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 1,251 bytes
コンパイル時間 2,461 ms
コンパイル使用メモリ 212,108 KB
実行使用メモリ 687,904 KB
最終ジャッジ日時 2024-11-16 14:11:43
合計ジャッジ時間 24,772 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
16,256 KB
testcase_01 MLE -
testcase_02 AC 4 ms
13,568 KB
testcase_03 MLE -
testcase_04 AC 56 ms
26,880 KB
testcase_05 MLE -
testcase_06 MLE -
testcase_07 MLE -
testcase_08 AC 35 ms
27,008 KB
testcase_09 MLE -
testcase_10 AC 35 ms
21,504 KB
testcase_11 MLE -
testcase_12 AC 46 ms
27,904 KB
testcase_13 AC 45 ms
27,648 KB
testcase_14 AC 128 ms
71,364 KB
testcase_15 AC 129 ms
71,488 KB
testcase_16 AC 134 ms
71,424 KB
testcase_17 AC 30 ms
19,968 KB
testcase_18 AC 29 ms
19,584 KB
testcase_19 AC 26 ms
17,256 KB
testcase_20 AC 26 ms
17,920 KB
testcase_21 AC 28 ms
19,584 KB
testcase_22 AC 28 ms
19,456 KB
testcase_23 AC 67 ms
40,264 KB
testcase_24 AC 68 ms
40,192 KB
testcase_25 AC 66 ms
40,192 KB
testcase_26 AC 185 ms
48,328 KB
testcase_27 AC 180 ms
47,616 KB
testcase_28 AC 197 ms
52,352 KB
testcase_29 AC 25 ms
15,092 KB
testcase_30 AC 44 ms
19,968 KB
testcase_31 AC 96 ms
32,512 KB
testcase_32 AC 36 ms
17,440 KB
testcase_33 AC 63 ms
24,576 KB
testcase_34 AC 98 ms
33,408 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 AC 47 ms
19,712 KB
testcase_39 AC 200 ms
46,848 KB
testcase_40 AC 81 ms
29,056 KB
testcase_41 TLE -
testcase_42 AC 292 ms
131,944 KB
testcase_43 AC 298 ms
131,840 KB
testcase_44 AC 289 ms
131,700 KB
testcase_45 AC 78 ms
45,824 KB
testcase_46 AC 81 ms
45,892 KB
testcase_47 AC 81 ms
45,824 KB
testcase_48 MLE -
権限があれば一括ダウンロードができます

ソースコード

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];
map<int,ll> dp[101010];
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(m,dp[i]) sum+=m.second;
		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]+=S[i])%=mo;
		FORR(a,dp[i]) if(i+a.first<=N) {
			(dp[i+a.first][a.first]+=a.second)%=mo;
		}
		
		
	}
	
}


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