이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define int long long
const int N = 2e5;
const int mod = 1e9 + 7;
const int B = 335;
int dp[N];
int32_t main() {
#ifdef LOCAL
freopen("input.txt", "r", stdin);
freopen("output.txt", "w", stdout);
#endif // LOCAL
ios_base::sync_with_stdio(0);
cin.tie(0);
int n;
cin >> n;
dp[1] = 1;
int s = 0;
vector<vector<int>> add (B + 1, vector<int> (B + 1, 0));
set<array<int,4>> st;
int C = 0;
for (int i = 1; i <= n; ++i) {
int x, d;
cin >> d >> x;
// for (int j = 1; j <= B; ++j) {
// (dp[i] += add[j][i % j]) %= mod;
// }
if (i != 1) dp[i] = C;
if (x && d) {
if (d >= B) {
for (int j = 1; j <= x; ++j) {
if (i + d * j > n) break;
(dp[i + d * j] += dp[i]) %= mod;
}
} else {
(C += dp[i]) %= mod;
// (add[d][i % d] += dp[i]) %= mod;
st.insert ({i + x * d, d, i % d, dp[i]});
}
}
while ((int)st.size() && (*st.begin())[0] == i) {
array<int,4> v = (*st.begin());
// add[v[1]][v[2]] -= v[3];
C -= v[3];
while (C < 0) add[v[1]][v[2]] += mod, C += mod;
st.erase (st.begin());
}
(s += dp[i]) %= mod;
}
cout << s << '\n';
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |