# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1066453 | Essa2006 | Trains (BOI24_trains) | C++14 | 108 ms | 7096 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define endl '\n'
#define FF first
#define SS second
#define all(a) a.begin(), a.end()
#define mod (ll)(1000000007)
int main() {
ios_base::sync_with_stdio(0);cin.tie(0);
int n;
cin >> n;
vector<int> D(n), X(n);
vector<ll> dp(n, 1);
vector<vector<int>> Sub(n);
int sq = sqrt(1e5);
for (int i = 0; i < n; i++) {
cin >> D[i] >> X[i];
if (D[i] < sq && i + (ll)D[i] * (X[i] + 1) < n && D[i]) {
Sub[i + D[i] * (X[i] + 1)].push_back(i);
}
}
vector<vector<int>> Ways(sq + 1);
for (int i = 1; i <= sq; i++) {
Ways[i].resize(i);
}
for (int i = n - 1; i >= 0; i--) {
if (D[i] >= sq) {
for (int j = 1; j <= X[i] && i + (ll) j * D[i] < n;j++) {
dp[i] += dp[i + j * D[i]];
dp[i] %= mod;
}
}
else if (D[i]){
dp[i] += Ways[D[i]][i % D[i]];
dp[i] %= mod;
}
for (int j = 1; j <= sq; j++) {
Ways[j][i % j] += dp[i];
Ways[j][i % j] %= mod;
}
for (int j = 0; j < Sub[i].size(); j++) {
dp[Sub[i][j]] -= Ways[D[Sub[i][j]]][i % D[Sub[i][j]]];
dp[Sub[i][j]] += mod, dp[Sub[i][j]] %= mod;
}
}
cout << dp[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... |