# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
369256 | chienyu_xiong | Journey (NOI18_journey) | C++17 | 1 ms | 620 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/*
* 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;
}
컴파일 시 표준 에러 (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... |