이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "race.h"
using namespace std;
using ll = long long;
using db = long double;
using str = string;
using pi = pair<int, int>;
using pl = pair<ll, ll>;
using pd = pair<db, db>;
using vi = vector<int>;
using vb = vector<bool>;
using vl = vector<ll>;
using vd = vector<db>;
using vs = vector<str>;
using vpi = vector<pi>;
using vpl = vector<pl>;
using vpd = vector<pd>;
#define mp make_pair
#define f first
#define s second
#define bg(x) begin(x)
#define all(x) bg(x), end(x)
#define sor(x) sort(all(x))
#define ft front()
#define bk back()
#define pb push_back
#define pf push_front
#define lb lower_bound
#define ub upper_bound
#define FOR(i, a, b) for (int i = (a); i < (b); i++)
#define F0R(i, a) FOR(i, 0, a)
#define ROF(i, a, b) for (int i = (b) - 1; i >= (a); i--)
#define R0F(i, a) ROF(i, 0, a)
#define EACH(a, x) for (auto& a : x)
const int MOD = 1e9 + 7;
const int MX = 2e5 + 5;
const ll INF = 1e18;
int N, K, ans = MOD; vpi adj[200010]; int sub[200010]; bool vis[200010]; unordered_map<int, int> cur;
void update(int K, int V) { if (!cur.count(K)) cur[K] = MOD; cur[K] = min(cur[K], V); }
int getVal(int K) { if (!cur.count(K)) return MOD; return cur[K]; }
void DFS1(int X, int P) {
sub[X] = 1; EACH(Y, adj[X]) if (Y.f != P && !vis[Y.f]) { DFS1(Y.f, X); sub[X] += sub[Y.f]; }
}
int getCent(int X, int P, int S) {
EACH(Y, adj[X]) if (Y.f != P && !vis[Y.f] && sub[Y.f] > S / 2) return getCent(Y.f, X, S); return X;
}
void DFS2(int X, int P, bool upd, int dist, int depth) {
if (dist > K) return ; if (upd) update(dist, depth); else ans = min(ans, getVal(K - dist) + depth);
EACH(Y, adj[X]) if (Y.f != P && !vis[Y.f]) DFS2(Y.f, X, upd, dist + Y.s, depth + 1);
}
void decomp(int X, int P) {
DFS1(X, 0); int C = getCent(X, 0, sub[X]); vis[C] = true; cur[0] = 0;
EACH(Y, adj[C]) if (Y.f != P && !vis[Y.f]) { DFS2(Y.f, C, false, Y.s, 1); DFS2(Y.f, C, true, Y.s, 1); }
cur.clear(); EACH(Y, adj[C]) if (Y.f = P && !vis[Y.f]) decomp(Y.f, X);
}
int best_path(int _N, int _K, int H[][2], int L[]) {
N = _N; K = _K; FOR(i, 0, N - 1) {
int A = H[i][0] + 1; int B = H[i][1] + 1;
adj[A].pb({B, L[i]}), adj[B].pb({A, L[i]});
}
decomp(1, 0); return (ans == MOD ? -1 : ans);
}
컴파일 시 표준 에러 (stderr) 메시지
race.cpp: In function 'int getCent(int, int, int)':
race.cpp:42:20: warning: this 'for' clause does not guard... [-Wmisleading-indentation]
42 | #define EACH(a, x) for (auto& a : x)
| ^~~
race.cpp:58:5: note: in expansion of macro 'EACH'
58 | EACH(Y, adj[X]) if (Y.f != P && !vis[Y.f] && sub[Y.f] > S / 2) return getCent(Y.f, X, S); return X;
| ^~~~
race.cpp:58:95: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for'
58 | EACH(Y, adj[X]) if (Y.f != P && !vis[Y.f] && sub[Y.f] > S / 2) return getCent(Y.f, X, S); return X;
| ^~~~~~
race.cpp: In function 'void DFS2(int, int, bool, int, int)':
race.cpp:61:5: warning: this 'if' clause does not guard... [-Wmisleading-indentation]
61 | if (dist > K) return ; if (upd) update(dist, depth); else ans = min(ans, getVal(K - dist) + depth);
| ^~
race.cpp:61:28: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'if'
61 | if (dist > K) return ; if (upd) update(dist, depth); else ans = min(ans, getVal(K - dist) + depth);
| ^~
race.cpp: In function 'void decomp(int, int)':
race.cpp:70:42: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
70 | cur.clear(); EACH(Y, adj[C]) if (Y.f = P && !vis[Y.f]) decomp(Y.f, X);
| ~~~~^~~~~~~~~~~~~~~~
# | 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... |