이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/**
* author : Lăng Trọng Đạt
* created: 14-06-2024
**/
#include <bits/stdc++.h>
using namespace std;
const int MAXN = 1e4 + 5;
int sz[MAXN];
vector<pair<int, int>> adj[MAXN];
int dp[MAXN][MAXN][2];
int n, k, s;
void dfs(int v, int prv = -1) {
sz[v] = 1;
dp[v][1][0] = dp[v][1][1] = 0;
dp[v][0][0] = dp[v][0][1] = 0;
for (auto[u, w] : adj[v]) {
if (u == prv) continue;
dfs(u, v);
for (int i = min(k, sz[v] + sz[u]); i > 0; i--) {
for (int j = max(1, i - sz[v]); j <= min(i, sz[u]); j++) {
dp[v][i][1] = min(dp[v][i][1], dp[v][i - j][1] + dp[u][j][1] + 2*w);
dp[v][i][0] = min(dp[v][i][0], dp[v][i - j][0] + dp[u][j][1] + 2*w);
dp[v][i][0] = min(dp[v][i][0], dp[v][i - j][1] + dp[u][j][0] + w);
}
}
sz[v] += sz[u];
}
}
main() {
memset(dp, 0x3f, sizeof(dp));
cin >> n >> k >> s;
int a, b, w;
for (int i = 1; i < n; i++) {
cin >> a >> b >> w;
adj[a].push_back({b, w});
adj[b].push_back({a, w});
}
dfs(s);
cout << dp[s][k][0];
}
컴파일 시 표준 에러 (stderr) 메시지
museum.cpp: In function 'void dfs(int, int)':
museum.cpp:18:14: warning: structured bindings only available with '-std=c++17' or '-std=gnu++17'
18 | for (auto[u, w] : adj[v]) {
| ^
museum.cpp: At global scope:
museum.cpp:31:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
31 | main() {
| ^~~~
# | 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... |