結果

問題 No.1331 Moving Penguin
ユーザー Example0911Example0911
提出日時 2021-01-08 22:59:55
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,692 bytes
コンパイル時間 2,197 ms
コンパイル使用メモリ 211,608 KB
実行使用メモリ 15,232 KB
最終ジャッジ日時 2024-11-16 15:00:44
合計ジャッジ時間 70,308 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 401 ms
10,496 KB
testcase_01 AC 1 ms
10,496 KB
testcase_02 AC 1 ms
10,496 KB
testcase_03 AC 1 ms
9,984 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 22 ms
10,496 KB
testcase_09 AC 22 ms
10,752 KB
testcase_10 AC 21 ms
10,496 KB
testcase_11 AC 27 ms
10,752 KB
testcase_12 AC 27 ms
10,752 KB
testcase_13 AC 28 ms
10,496 KB
testcase_14 AC 110 ms
10,496 KB
testcase_15 AC 113 ms
10,752 KB
testcase_16 AC 111 ms
10,496 KB
testcase_17 AC 23 ms
9,984 KB
testcase_18 AC 23 ms
10,496 KB
testcase_19 AC 21 ms
10,240 KB
testcase_20 AC 19 ms
10,496 KB
testcase_21 AC 20 ms
9,856 KB
testcase_22 AC 19 ms
10,240 KB
testcase_23 AC 42 ms
10,240 KB
testcase_24 AC 44 ms
10,496 KB
testcase_25 AC 44 ms
10,368 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 AC 18 ms
14,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
using ll = long long;
using P = pair<ll, ll>;
const ll INF = (1LL << 61);
ll mod = (ll)1e9 + 7;

struct mint {
	ll x; // typedef long long ll;
	mint(ll x = 0) :x((x%mod + mod) % mod) {}
	mint operator-() const { return mint(-x); }
	mint& operator+=(const mint a) {
		if ((x += a.x) >= mod) x -= mod;
		return *this;
	}
	mint& operator-=(const mint a) {
		if ((x += mod - a.x) >= mod) x -= mod;
		return *this;
	}
	mint& operator*=(const mint a) {
		(x *= a.x) %= mod;
		return *this;
	}
	mint operator+(const mint a) const {
		mint res(*this);
		return res += a;
	}
	mint operator-(const mint a) const {
		mint res(*this);
		return res -= a;
	}
	mint operator*(const mint a) const {
		mint res(*this);
		return res *= a;
	}
	mint pow(ll t) const {
		if (!t) return 1;
		mint a = pow(t >> 1);
		a *= a;
		if (t & 1) a *= *this;
		return a;
	}

	// for prime mod
	mint inv() const {
		return pow(mod - 2);
	}
	mint& operator/=(const mint a) {
		return (*this) *= a.inv();
	}
	mint operator/(const mint a) const {
		mint res(*this);
		return res /= a;
	}
};
istream& operator>>(istream& is, mint& a) { return is >> a.x; }
ostream& operator<<(ostream& os, const mint& a) { return os << a.x; }
map<P, mint>mp;
signed main(){
	int N; cin >> N;
	vector<int>A(N); 
	for (int i = 0; i < N; i++) {
		cin >> A[i];
	}
	vector<mint>dp(N);
	dp[0] = 1;
	for (int i = 0; i < N; i++) {
		if(i != 0)dp[i] += dp[i - 1];
		for (auto x : mp) {
			if (i != 0 && x.first.second == 1 && A[i - 1] == 1)dp[i] -= dp[i - 1];
			if (i % x.first.second == x.first.first) {
				dp[i] += x.second;
			}
		}
		
		mp[{i % A[i], A[i]}] += dp[i];
		
	}
	cout << dp[N - 1] << endl;
}
0