結果

問題 No.1331 Moving Penguin
ユーザー leaf_1415leaf_1415
提出日時 2021-01-08 22:19:11
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 332 ms / 1,500 ms
コード長 1,529 bytes
コンパイル時間 2,628 ms
コンパイル使用メモリ 81,140 KB
実行使用メモリ 254,208 KB
最終ジャッジ日時 2024-11-07 14:47:48
合計ジャッジ時間 16,529 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
22,784 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 3 ms
5,248 KB
testcase_04 AC 301 ms
254,188 KB
testcase_05 AC 297 ms
254,204 KB
testcase_06 AC 307 ms
254,080 KB
testcase_07 AC 300 ms
254,208 KB
testcase_08 AC 301 ms
254,080 KB
testcase_09 AC 304 ms
254,080 KB
testcase_10 AC 301 ms
254,208 KB
testcase_11 AC 301 ms
254,208 KB
testcase_12 AC 296 ms
254,208 KB
testcase_13 AC 298 ms
254,208 KB
testcase_14 AC 296 ms
254,208 KB
testcase_15 AC 297 ms
254,208 KB
testcase_16 AC 297 ms
254,208 KB
testcase_17 AC 291 ms
254,176 KB
testcase_18 AC 299 ms
254,208 KB
testcase_19 AC 292 ms
254,080 KB
testcase_20 AC 296 ms
254,080 KB
testcase_21 AC 295 ms
254,208 KB
testcase_22 AC 298 ms
254,208 KB
testcase_23 AC 302 ms
254,208 KB
testcase_24 AC 302 ms
254,208 KB
testcase_25 AC 301 ms
254,208 KB
testcase_26 AC 304 ms
254,080 KB
testcase_27 AC 301 ms
254,208 KB
testcase_28 AC 301 ms
254,208 KB
testcase_29 AC 295 ms
254,080 KB
testcase_30 AC 102 ms
88,064 KB
testcase_31 AC 170 ms
146,176 KB
testcase_32 AC 90 ms
78,080 KB
testcase_33 AC 136 ms
115,072 KB
testcase_34 AC 204 ms
172,800 KB
testcase_35 AC 317 ms
254,208 KB
testcase_36 AC 317 ms
254,208 KB
testcase_37 AC 317 ms
254,208 KB
testcase_38 AC 108 ms
92,288 KB
testcase_39 AC 295 ms
247,168 KB
testcase_40 AC 151 ms
129,408 KB
testcase_41 AC 299 ms
254,080 KB
testcase_42 AC 317 ms
254,208 KB
testcase_43 AC 312 ms
254,208 KB
testcase_44 AC 332 ms
254,208 KB
testcase_45 AC 324 ms
254,208 KB
testcase_46 AC 311 ms
254,208 KB
testcase_47 AC 314 ms
254,208 KB
testcase_48 AC 300 ms
254,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstdio>
#include <cmath>
#include <ctime>
#include <cstdlib>
#include <cassert>
#include <vector>
#include <list>
#include <stack>
#include <queue>
#include <deque>
#include <map>
#include <set>
#include <bitset>
#include <string>
#include <algorithm>
#include <utility>
#include <complex>
#define rep(x, s, t) for(llint (x) = (s); (x) <= (t); (x)++)
#define chmin(x, y) (x) = min((x), (y))
#define chmax(x, y) (x) = max((x), (y))
#define all(x) (x).begin(),(x).end()
#define inf 1e18
#define mod 1000000007

using namespace std;

typedef long long llint;
typedef long long ll;
typedef pair<llint, llint> P;

const ll B = 320;
ll n;
ll a[100005];
ll dp[100005];
ll sum[B][100005];

int main(void)
{
	ios::sync_with_stdio(0);
	cin.tie(0);
	
	cin >> n;
	rep(i, 1, n) cin >> a[i];
	
	dp[1] = 1;
	rep(i, 1, n){
		
		if(i > 1){
			if(a[i-1] != 1){
				dp[i] += dp[i-1];
				if(dp[i] >= mod) dp[i] -= mod;
			}
			rep(j, 1, B-1) if(i-j >= 1) dp[i] += sum[j][i-j];
			dp[i] %= mod;
		}
		rep(j, 1, B-1){
			ll s = 0;
			if(i-j >= 1) s = sum[j][i-j];
			sum[j][i] = s;
			if(j == a[i]) sum[j][i] += dp[i];
			if(sum[j][i] >= mod) sum[j][i] -= mod;
		}
		
		if(a[i] >= B){
			rep(j, 1, n){
				if(i+j*a[i] > n) break;
				dp[i+j*a[i]] += dp[i];
				if(dp[i+j*a[i]] >= mod) dp[i+j*a[i]] -= mod;
			}
		}
	}
	cout << dp[n] << endl;
	
	/*rep(i, 1, n) cout << sum[1][i] << " "; cout << endl;
	rep(i, 1, n) cout << sum[2][i] << " "; cout << endl;
	rep(i, 1, n) cout << dp[i] << " "; cout << endl;*/
	
	return 0;
}
0