結果

問題 No.1331 Moving Penguin
ユーザー furafura
提出日時 2021-01-09 19:25:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 366 ms / 1,500 ms
コード長 1,834 bytes
コンパイル時間 2,320 ms
コンパイル使用メモリ 206,576 KB
実行使用メモリ 82,944 KB
最終ジャッジ日時 2024-11-07 15:08:41
合計ジャッジ時間 16,958 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
9,088 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 305 ms
82,944 KB
testcase_05 AC 357 ms
82,944 KB
testcase_06 AC 366 ms
82,816 KB
testcase_07 AC 359 ms
82,816 KB
testcase_08 AC 299 ms
82,816 KB
testcase_09 AC 299 ms
82,816 KB
testcase_10 AC 297 ms
82,816 KB
testcase_11 AC 302 ms
82,816 KB
testcase_12 AC 300 ms
82,944 KB
testcase_13 AC 301 ms
82,816 KB
testcase_14 AC 303 ms
82,944 KB
testcase_15 AC 303 ms
82,688 KB
testcase_16 AC 302 ms
82,944 KB
testcase_17 AC 296 ms
82,816 KB
testcase_18 AC 301 ms
82,816 KB
testcase_19 AC 299 ms
82,816 KB
testcase_20 AC 295 ms
82,816 KB
testcase_21 AC 297 ms
82,816 KB
testcase_22 AC 296 ms
82,944 KB
testcase_23 AC 299 ms
82,944 KB
testcase_24 AC 299 ms
82,816 KB
testcase_25 AC 297 ms
82,816 KB
testcase_26 AC 300 ms
82,944 KB
testcase_27 AC 302 ms
82,944 KB
testcase_28 AC 300 ms
82,944 KB
testcase_29 AC 297 ms
82,816 KB
testcase_30 AC 101 ms
30,080 KB
testcase_31 AC 162 ms
48,768 KB
testcase_32 AC 76 ms
26,496 KB
testcase_33 AC 134 ms
39,040 KB
testcase_34 AC 201 ms
56,960 KB
testcase_35 AC 331 ms
82,944 KB
testcase_36 AC 334 ms
82,816 KB
testcase_37 AC 331 ms
82,944 KB
testcase_38 AC 108 ms
31,744 KB
testcase_39 AC 286 ms
80,512 KB
testcase_40 AC 146 ms
43,136 KB
testcase_41 AC 345 ms
82,688 KB
testcase_42 AC 327 ms
82,816 KB
testcase_43 AC 328 ms
82,816 KB
testcase_44 AC 326 ms
82,816 KB
testcase_45 AC 333 ms
82,816 KB
testcase_46 AC 334 ms
82,944 KB
testcase_47 AC 332 ms
82,816 KB
testcase_48 AC 298 ms
82,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i,n) for(int i=0;i<(n);i++)

using namespace std;

class mint{
	static const int MOD=1e9+7;
	int x;
public:
	mint():x(0){}
	mint(long long y){ x=y%MOD; if(x<0) x+=MOD; }

	mint& operator+=(const mint& m){ x+=m.x; if(x>=MOD) x-=MOD; return *this; }
	mint& operator-=(const mint& m){ x-=m.x; if(x<   0) x+=MOD; return *this; }
	mint& operator*=(const mint& m){ x=1LL*x*m.x%MOD; return *this; }
	mint& operator/=(const mint& m){ return *this*=inverse(m); }
	mint operator+(const mint& m)const{ return mint(*this)+=m; }
	mint operator-(const mint& m)const{ return mint(*this)-=m; }
	mint operator*(const mint& m)const{ return mint(*this)*=m; }
	mint operator/(const mint& m)const{ return mint(*this)/=m; }
	mint operator-()const{ return -x; }

	friend mint inverse(const mint& m){
		int a=m.x,b=MOD,u=1,v=0;
		while(b>0){ int t=a/b; a-=t*b; swap(a,b); u-=t*v; swap(u,v); }
		return u;
	}

	friend istream& operator>>(istream& is,mint& m){ long long t; is>>t; m=t; return is; }
	friend ostream& operator<<(ostream& os,const mint& m){ return os<<m.x; }
	int to_int()const{ return x; }
};

mint operator+(long long x,const mint& m){ return mint(x)+m; }
mint operator-(long long x,const mint& m){ return mint(x)-m; }
mint operator*(long long x,const mint& m){ return mint(x)*m; }
mint operator/(long long x,const mint& m){ return mint(x)/m; }

int main(){
	int n; scanf("%d",&n);
	vector<int> a(n);
	rep(i,n) scanf("%d",&a[i]);

	vector dp(n,mint(0));
	vector cum(200,vector(n,mint(0)));
	dp[0]=1;
	rep(i,n){
		rep(t,200){
			dp[i]+=cum[t][i];
		}

		if(i+1<n && a[i]!=1){
			dp[i+1]+=dp[i];
		}
		if(a[i]<200){
			cum[a[i]][i]+=dp[i];
		}
		else{
			for(int j=i+a[i];j<n;j+=a[i]){
				dp[j]+=dp[i];
			}
		}
		rep(t,200) if(i+t<n) {
			cum[t][i+t]+=cum[t][i];
		}
	}
	cout<<dp[n-1]<<'\n';

	return 0;
}
0