이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define ar array
#define ll long long
const int MAX_N = 1e4 + 1;
const int MAX_M = 4e2 + 1;
const int MAX = 5e8 + 1;
const int MOD = 1e9 + 7;
const int INF = 1e9;
const ll LINF = 1e18;
int n, m, h, dp[MAX_N][MAX_M];
void solve() {
cin >> n >> m >> h;
dp[0][0] = 1;
for (int u = 0; u < n - 1; u++) {
for (int i = 0; i < h; i++) {
int v, t; cin >> v >> t;
if (v <= u) continue;
int s = 0;
for (int j = 0; j + t < m; j++) {
s = min(s + dp[u][j], MAX);
dp[v][j + t] = min(dp[v][j + t] + s, MAX);
}
}
}
for (int i = 0; i < m; i++) cout << dp[n - 1][i] << " ";
cout << "\n";
}
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
// freopen("input.txt", "r", stdin);
// freopen("output.txt", "t", stdout);
int tc = 1;
// cin >> tc;
for (int t = 1; t <= tc; t++) {
// cout << "Case #" << t << ": ";
solve();
}
}
# | 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... |