# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1051933 | deera | Trains (BOI24_trains) | C++14 | 179 ms | 256084 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const ll MOD = 1e9+7;
int main() {
ll n; cin >> n;
ll m = n + 100;
const ll p = (ll)sqrt(n);
vector<ll> dp(m);
vector<ll> d(m), x(m);
vector<vector<ll>> rest(m, vector<ll>(p, 0));
for (ll i = 1; i <= n; i++) cin >> d[i] >> x[i];
for (ll i = 0; i < dp.size(); i++) dp[i] = 1;
for (ll i = n; i >= 1; i--) {
ll step = d[i];
ll next = i + step;
ll maxd = i + step * (x[i] + 1);
if (d[i] != 0) { // it's not broken
if (step >= p) {
for (ll j = next; j <= n && j <= maxd - step; j+=step) {
dp[i] = (dp[j] + dp[i]) % MOD;
}
} else {
if (next <= n) dp[i] += rest[next][step];
if (maxd <= n) dp[i] -= rest[maxd][step];
dp[i] %= MOD; // modding here to avoid moddings negatives
}
}
for (int step = 1; step < p; step++) {
ll next = i + step;
if (next <= n)
rest[i][step] = (dp[i] + rest[next][step]) % MOD;
else
rest[i][step] = (dp[i]) % MOD;
}
}
dp[1] += MOD;
cout << dp[1] % MOD << endl;
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |