QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#157041#7103. Red Black Treeucup-team896#AC ✓1013ms41640kbC++142.4kb2023-09-02 14:48:582023-09-02 15:00:29

Judging History

你现在查看的是最新测评结果

  • [2023-09-02 15:00:29]
  • 评测
  • 测评结果:AC
  • 用时:1013ms
  • 内存:41640kb
  • [2023-09-02 14:48:58]
  • 提交

answer

#include <bits/stdc++.h>
#ifdef dbg
#define D(...) fprintf(stderr, __VA_ARGS__)
#define DD(...) D(#__VA_ARGS__ " = "), debug_helper::debug(__VA_ARGS__), D("\n")
#include "C:\Users\wsyear\Desktop\OI\templates\debug.hpp"
#else
#define D(...) ((void)0)
#define DD(...) ((void)0)
#endif
#define rep(i, j, k) for (int i = (j); i <= (k); ++i)
#define per(i, j, k) for (int i = (j); i >= (k); --i)
#define SZ(v) int((v).size())
#define ALL(v) (v).begin(),(v).end()
#define fi first
#define se second
using ll = long long;
using pii = std::pair<int, int>;
using pll = std::pair<ll, ll>;

using namespace std;

const int N = 100010;

int n, m, q, mm, dep[N], rt[N], sum[N], red[N], fa[N][20];
ll len[N][20], val[N], mx[N];
vector<pii> e[N];

void dfs(int u) {
  if (red[u]) val[u] = 0;
  for (auto nxt : e[u]) {
    int v = nxt.fi, w = nxt.se;
    if (v == fa[u][0]) continue;
    fa[v][0] = u, len[v][0] = w;
    dep[v] = dep[u] + 1;
    val[v] = val[u] + w, dfs(v);
  }
}

int lca(int u, int v) {
  if (dep[u] < dep[v]) swap(u, v);
  int dc = dep[u] - dep[v];
  per (i, 19, 0) if (dc >> i & 1) u = fa[u][i];
  if (u == v) return u;
  per (i, 19, 0) if (fa[u][i] != fa[v][i]) u = fa[u][i], v = fa[v][i];
  return fa[u][0];
}

ll LEN(int u, int v) {
  ll res = 0;
  int dc = dep[u] - dep[v];
  per (i, 19, 0) {
    if (dc >> i & 1) {
      res += len[u][i];
      u = fa[u][i];
    }
  }
  return res;
}

void work() {
  cin >> n >> m >> q;
  rep (i, 1, n) {
    red[i] = 0;
    e[i].clear();
  }
  rep (i, 1, m) {
    int x; cin >> x;
    red[x] = 1;
  }
  rep (i, 1, n - 1) {
    int u, v, w;
    cin >> u >> v >> w;
    e[u].emplace_back(v, w);
    e[v].emplace_back(u, w);
  }
  dfs(1);
  rep (j, 1, 19) rep (i, 1, n) {
    fa[i][j] = fa[fa[i][j - 1]][j - 1];
    len[i][j] = len[i][j - 1] + len[fa[i][j - 1]][j - 1];
  }
  while (q--) {
    cin >> mm;
    rep (i, 1, mm) cin >> rt[i];
    sort(rt + 1, rt + mm + 1, [&](int x, int y) {
      return val[x] < val[y];
    });
    rep (i, 1, mm) mx[i] = max(mx[i - 1], val[rt[i]]);
    ll ans = mx[mm], MX = 0;
    int L = rt[mm];
    per (i, mm, 1) {
      int LL = L;
      L = lca(L, rt[i]);
      MX = max(MX + LEN(LL, L), LEN(rt[i], L));
      ans = min(ans, max(MX, mx[i - 1]));
    }
    cout << ans << '\n';
  }
}

int main() {
  cin.tie(nullptr) -> ios::sync_with_stdio(false);
  int t; cin >> t;
  while (t--) work();
}

这程序好像有点Bug,我给组数据试试?

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 11588kb

input:

2
12 2 4
1 9
1 2 1
2 3 4
3 4 3
3 5 2
2 6 2
6 7 1
6 8 2
2 9 5
9 10 2
9 11 3
1 12 10
3 3 7 8
4 4 5 7 8
4 7 8 10 11
3 4 5 12
3 2 3
1 2
1 2 1
1 3 1
1 1
2 1 2
3 1 2 3

output:

4
5
3
8
0
0
0

result:

ok 7 lines

Test #2:

score: 0
Accepted
time: 1013ms
memory: 41640kb

input:

522
26 1 3
1
1 4 276455
18 6 49344056
18 25 58172365
19 9 12014251
2 1 15079181
17 1 50011746
8 9 2413085
23 24 23767115
22 2 26151339
26 21 50183935
17 14 16892041
9 26 53389093
1 20 62299200
24 18 56114328
11 2 50160143
6 26 14430542
16 7 32574577
3 16 59227555
3 15 8795685
4 12 5801074
5 20 57457...

output:

148616264
148616264
0
319801028
319801028
255904892
317070839
1265145897
1265145897
1072765445
667742619
455103436
285643094
285643094
285643094
317919339
0
785245841
691421476
605409472
479058444
371688030
303203698
493383271
919185207
910180170
919185207
121535083
181713164
181713164
181713164
181...

result:

ok 577632 lines

Extra Test:

score: 0
Extra Test Passed