# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1097201 | manhlinh1501 | Trains (BOI24_trains) | C++17 | 315 ms | 292760 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
using i64 = long long;
const int MAXN = 1e5 + 5;
using pii = pair<int, int>;
const i64 MOD = 1e9 + 7;
const int BLOCK = 370;
int N;
pii a[MAXN];
i64 dp[MAXN];
i64 b[BLOCK][MAXN];
void add(i64 &a, i64 b) {
a += b;
if(a >= MOD) a -= MOD;
if(a < 0) a += MOD;
}
signed main() {
#define TASK ""
if(fopen(TASK".inp", "r")) {
freopen(TASK".inp", "r", stdin);
freopen(TASK".out", "w", stdout);
}
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
cin >> N;
for(int i = 1; i <= N; i++) cin >> a[i].first >> a[i].second;
dp[1] = 1;
for(int i = 1; i <= N; i++) {
for(int j = 1; j < BLOCK; j++) {
if(i >= j)
add(b[j][i], b[j][i - j]);
}
for(int j = 1; j < BLOCK; j++)
add(dp[i], b[j][i]);
if(a[i].first == 0) continue;
if(a[i].first >= BLOCK) {
for(int j = 1; j <= a[i].second and i + j * a[i].first <= N; j++)
add(dp[i + j * a[i].first], dp[i]);
} else {
if(i + a[i].first <= N)
add(b[a[i].first][i + a[i].first], dp[i]);
if(1LL * i + 1LL * a[i].first * a[i].second + a[i].first <= N)
add(b[a[i].first][i + a[i].first * a[i].second + a[i].first], -dp[i]);
}
}
i64 ans = 0;
for(int i = 1; i <= N; i++) add(ans, dp[i]);
cout << ans;
}
컴파일 시 표준 에러 (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... |