# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
369254 | chienyu_xiong | Journey (NOI18_journey) | C++17 | 1 ms | 620 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
/*
* CM = March
* M = April
* IM = July
* GM = September
* IGM = December
*/
#include <bits/stdc++.h>
#define F first
#define S second
#define pb push_back
#define mp make_pair
typedef long long int lli;
#define pll pair<lli, lli>
#define pil pair<int, lli>
#define pli pair<lli, int>
#define pii pair<int, int>
#define pdd pair<double, double>
#define vi vector<int>
#define vl vector<lli>
#define dmx(x, y) x = max(x, y)
#define dmn(x, y) x = min(x, y)
using namespace std;
void setIO(string str, bool dbg) {
ios_base::sync_with_stdio(0);
cin.tie(nullptr);
cout.tie(nullptr);
if (!dbg) {
freopen((str + ".in").c_str(), "r", stdin);
freopen((str + ".out").c_str(), "w", stdout);
}
}
const int MAX = 1e4 + 5;
const int LEN = 4e2 + 5;
const int LVL = 2e1 + 0;
const lli MOD = 1e9 + 7;
const lli INF = 9e17;
int xyz = 1; // test cases
int n, m, h;
int vst[MAX];
lli dps[MAX][LEN];
vector<pil> con[MAX];
void dfs(int pos) {
if (pos == 0) return;
vst[pos] = true;
for (auto adj : con[pos]) {
int nxt = adj.F;
int val = adj.S;
if (nxt > pos) continue;
//cout << pos << ": " << nxt << endl;
if (!vst[nxt]) dfs(nxt);
for (int i = val; i < m; i++) {
dps[pos][i] += dps[nxt][i - val];
dps[pos][i] = min(dps[pos][i], 500000001LL);
}
}
for (int i = 1; i < m; i++) {
dps[pos][i] += dps[pos][i - 1];
dps[pos][i] = min(dps[pos][i], 500000001LL);
}
}
void fnc() {
cin >> n >> m >> h;
for (int i = 0; i < n - 1; i++)
for (int j = 0; j < h; j++) {
int pos;
int val;
cin >> pos >> val;
con[pos].pb({i, val});
}
dps[0][0] = 1;
dfs(n - 1);
/*
for (int i = 0; i < m; i++) {
for (int j = 0; j < n; j++)
cout << dps[j][i] << " ";
cout << endl;
}
*/
for (int i = 0; i < m; i++)
cout << dps[n - 1][i] << " "; cout << "\n";
}
int main() {
setIO("", 1);
while (xyz--) fnc();
return 0;
}
Compilation message (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... |