QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#367621#7103. Red Black TreeshangtianAC ✓1111ms40552kbC++142.1kb2024-03-26 10:47:282024-03-26 10:47:29

Judging History

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

  • [2024-03-26 10:47:29]
  • 评测
  • 测评结果:AC
  • 用时:1111ms
  • 内存:40552kb
  • [2024-03-26 10:47:28]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
#define endl "\n"
#define int long long 
void solved(){
    int n,m,q;
    cin>>n>>m>>q;
    vector<vector<int>> fa(n+1,vector<int>(20));
    vector<vector<pair<int,int>>> adj(n+1);
    vector<int> r(m+1),dis(n+1),d1(n+1,2e18),dep(n+1);
    for(int i=1;i<=m;i++) cin>>r[i],d1[r[i]]=0;
    for(int i=1;i<=n-1;i++){
        int a,b,w;
        cin>>a>>b>>w;
        adj[a].push_back({b,w});
        adj[b].push_back({a,w});
    }
    dep[1]=1;
    auto dfs=[&](auto self,int u,int p)->void{
          for(auto &[v,w]:adj[u]){

              if(v==p) continue;
              fa[v][0]=u;
              dep[v]=dep[u]+1;
              for(int i=1;i<=19;i++) fa[v][i]=fa[fa[v][i-1]][i-1];
              dis[v]=dis[u]+w;
              if(d1[v]) d1[v]=d1[u]+w; 
              self(self,v,u);
          }   
    };
    //cout<<1<<endl;
    dfs(dfs,1,0);
    auto lca=[&](int u,int v){
         if(dep[u]<dep[v]) swap(u,v);
         for(int i=19;i>=0;i--){
            if(dep[u]-dep[v]>=(1ll<<i)){
                u=fa[u][i];
            }
         }
         if(u==v) return v;
         for(int i=19;i>=0;i--){
            if(fa[u][i]==fa[v][i]) continue;
            u=fa[u][i];
            v=fa[v][i];
         }
         return fa[v][0];
    };

    while(q--){
        int k;
        cin>>k;
        vector<pair<int,int>> s;
        for(int i=1;i<=k;i++){
            int x;
            cin>>x;
            s.push_back({d1[x],x});
        }
        sort(s.rbegin(),s.rend());
        int bf=s[0].second;
        int ans=s[0].first;
        int d2=0;
        for(int i=0;i<k;i++){
            //cout<<s[i].first<<" "<<s[i].second<<" "<<dis[s[i].second]<<" ";
            bf=lca(bf,s[i].second);
            //cout<<bf<<endl;
            d2=max(d2,dis[s[i].second]);
            ans=min(max(d2-dis[bf],i==k-1?0:d1[s[i+1].second]),ans);
        }
        cout<<ans<<endl;
    }
} 
signed main()
{
   ios::sync_with_stdio(false);
   cin.tie(0);
   cout.tie(0);
   int t=1;
   cin>>t;
   while(t--){
     solved();
   }
}

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

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

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: 1111ms
memory: 40552kb

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