이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define int long long
#define pb push_back
using namespace std;
const int maxn = 1e5 + 5;
vector<vector<int>> child(maxn, vector<int>(0));
int ways[maxn]; // ways[i] is number of way to travel the whole town from i
void dfs(int i) {
if (child[i].empty()) ways[i] = 1;
else {
ways[i] = 0;
for (int x : child[i]) {
dfs(x);
ways[i] += ways[x];
}
ways[i] += 1;
}
}
signed main() {
int n, d, x; cin >> n;
for (int i = 1; i <= n; i++) {
cin >> d >> x;
if (d > 0)
for (int j = 1; j <= x; j++) {
if (i + j * d > n) break;
child[i].pb(i + j * d);
}
}
dfs(1);
cout << ways[1];
}
# | 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... |