This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
#ifdef LOCAL
#include "/home/trcmai/code/tools.h"
#define debug(x...) \
cerr << "\e[91m" << __func__ << ":" << __LINE__ << " [" << #x << "] = ["; \
_print(x); \
cerr << "\e[39m" << endl;
#else
#define debug(x...)
#endif
using namespace std;
#define all(a) a.begin(), a.end()
#define fi first
#define se second
#define ll long long
#define endl '\n'
const int N = 1e5 + 6, LOG = 27, MOD = 1e9 + 7;
const ll INF = 1e18;
int n;
ll add(ll x, ll y) { return (x + y) % MOD; }
ll sub(ll x, ll y) { return (x - y % MOD + MOD) % MOD; }
ll mul(ll x, ll y) { return (x * y) % MOD; }
void upd(ll& x, ll y) { x = add(x, y); }
ll dp[N], d[N], x[N];
const int BS = 320;
ll sum[N][BS];
signed main()
{
cin.tie(0)->sync_with_stdio(0);
auto solver = [&]() {
cin >> n;
for (int i = 1; i <= n; ++i)
cin >> d[i] >> x[i];
for (int i = 1; i <= n; ++i) {
dp[i] = 1;
if (d[i] > BS) {
for (int j = 1; j <= x[i]; ++j) {
if (i + d[i] * j > n)
break;
upd(dp[i + d[i] * j], dp[i]);
}
} else if (d[i] <= BS && d[i] > 0 && x[i] > 0) {
upd(dp[i], sum[i + d[i]][d[i]]);
if (i + (x[i] + 1) * d[i] <= n)
dp[i] = sub(dp[i], sum[i + (x[i] + 1) * d[i]][d[i]]);
}
for (int j = 1; j <= BS; ++j)
upd(sum[i][j], dp[i]);
}
cout << dp[1] << endl;
};
int t = 1; // cin>>t;
while (t--)
solver();
}
Compilation message (stderr)
Main.cpp: In lambda function:
Main.cpp:24:32: warning: iteration 319 invokes undefined behavior [-Waggressive-loop-optimizations]
24 | void upd(ll& x, ll y) { x = add(x, y); }
| ~~~^~~~~~
Main.cpp:48:31: note: within this loop
48 | for (int j = 1; j <= BS; ++j)
| ~~^~~~~
# | 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... |