# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
369256 | 2021-02-21T03:56:47 Z | chienyu_xiong | Journey (NOI18_journey) | C++17 | 1 ms | 620 KB |
/* * 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 == n - 1) 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[i].pb({pos, val}); } dps[n - 1][0] = 1; dfs(0); 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[0][i] << " "; cout << "\n"; } int main() { setIO("", 1); while (xyz--) fnc(); return 0; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 620 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 620 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 620 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 620 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |