QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#157086#7103. Red Black Treeucup-team206#AC ✓841ms27648kbC++142.2kb2023-09-02 14:54:092023-09-02 15:00:58

Judging History

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

  • [2023-09-02 15:00:58]
  • 评测
  • 测评结果:AC
  • 用时:841ms
  • 内存:27648kb
  • [2023-09-02 14:54:09]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
#define FOR(i,s,t) for(int i=(s),_t=(t); i<=_t; ++i)
#define DOR(i,s,t) for(int i=(s),_t=(t); i>=_t; --i)
typedef long long ll;
const int N=1e5+50;
vector<pair<int,int>> E[N];
int col[N];
ll dep[N],pdep[N];
int de[N];
int Fa[N][22];
int Lt[N],Rt[N],tid;
void dfs(int x,int fr,ll d) {
    if(col[x]==1) d=dep[x];
    pdep[x]=d;
    Lt[x]=++tid;
    Fa[x][0]=fr;
    de[x]=de[fr]+1;
    for(auto [y,v]: E[x]) {
        if(y==fr) continue;
        dep[y]=dep[x]+v;
        dfs(y,x,d);
    }
    Rt[x]=tid;
}
int LCA(int x,int y) {
    if(de[x]<de[y]) swap(x,y);
    int d=de[x]-de[y];
    FOR(i,0,20) if((1<<i)&d) x=Fa[x][i];
    if(x==y) return x;
    DOR(i,20,0) if(Fa[x][i]!=Fa[y][i]) {
        x=Fa[x][i],y=Fa[y][i];
    }
    return Fa[x][0];
}
int mark[N];
bool cmp(int x,int y) {
    return dep[x]-pdep[x]>dep[y]-pdep[y];
}
void solve() {
    int n,m,q;
    cin >> n >> m >> q;
    tid=0;
    FOR(i,1,n) E[i].clear();
    FOR(i,1,n) col[i]=0;
    FOR(i,1,m) {
        int x;
        cin >> x;
        col[x]=1;
    }
    FOR(i,2,n) {
        int x,y,w;
        cin >> x >> y >> w;
        E[x].push_back({y,w});
        E[y].push_back({x,w});
    }
    dfs(1,0,0);
    FOR(j,1,20) FOR(i,1,n) Fa[i][j]=Fa[Fa[i][j-1]][j-1];
    while(q--) {
        int K;
        cin >> K;
        vector<int> a;
        while(K--) {
            int x;
            cin >> x;
            a.push_back(x);
        }
        sort(a.begin(),a.end(),cmp);
        ll r=dep[a[0]]-pdep[a[0]];
        int y=0;
        ll mx=0;
        // cerr << LCA(3,8) << endl;
        // cerr << r << endl;
        FOR(i,0,a.size()-1) {
            if(y) y=LCA(y,a[i]);
            else y=a[i];
            mx=max(mx,dep[a[i]]);
            ll t=mx-dep[y];
            if(i+1<a.size()) {
                t=max(t,dep[a[i+1]]-pdep[a[i+1]]);
            }
            // cerr << a[i] << ' ' << t << endl;
            // cerr << y << ' ' << mx << endl;
            r=min(r,t);
        }
        cout << r << '\n';
    }
}
int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int T;
    cin >> T;
    while(T--) solve();
    return 0;
}

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

詳細信息

Test #1:

score: 100
Accepted
time: 0ms
memory: 9900kb

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: 841ms
memory: 27648kb

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