QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#60667 | #2169. 'S No Problem | captured# | WA | 4ms | 9440kb | C++17 | 2.3kb | 2022-11-05 23:23:10 | 2022-11-05 23:23:13 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#define endl "\n"
#define LL long long
#define FOR(i,n) for(int i=0;i<n;i++)
#define deb(x) cerr<<#x<<" : "<<x<<" "
#define dnl cerr<<endl
typedef pair<int,int> pii;
const int maxn = 2e5+7;
vector<pii> g[maxn];
int mark[maxn];
int D[maxn];
int parent[maxn];
void dfs(int u,int p,int cost){
D[u] = cost;
parent[u] = p;
for(pii x:g[u]){
if(x.first!=p)dfs(x.first,u,cost+x.second);
}
}
vector<int> cnodes;
int D2[maxn];
void dfs2(int u,int p,int cost,int root){
D2[u] = cost;
cnodes.push_back(u);
for(pii x:g[u]){
if(x.first!=p){
if( !mark[x.first] or x.first==root )
dfs2(x.first,u,cost+x.second,root);
}
}
}
void solve(int cs){
int n;
LL total = 0;
cin>>n;
for(int i=2;i<=n;i++){
int u,v,w;cin>>u>>v>>w;
g[u].push_back({v,w});
g[v].push_back({u,w});
total += w;
total += w;
}
dfs(1,-1,0);
int a=-1,maxi=0;
for(int i=1;i<=n;i++){
if(D[i] > maxi){
maxi = D[i];
a = i;
}
}
dfs(a,-1,0);
int b=-1;
maxi=0;
for(int i=1;i<=n;i++){
if(D[i] > maxi){
maxi = D[i];
b = i;
}
}
LL diam = maxi;
vector<int> diameter;
int z = b;
while( z != a ){
diameter.push_back(z);
z = parent[z];
}
diameter.push_back(a);
// for(int d:diameter){
// deb(d);
// }
// dnl;
for(int d:diameter){
mark[d]=1;
}
int subdiam = 0;
for(int d:diameter){
cnodes.clear();
dfs2(d,-1,0,d);
int aa=-1,ma=-1;
for(int v:cnodes){
if(v==d)continue;
if(D2[v] > ma){
ma = D2[v];
aa = v;
}
}
cnodes.clear();
dfs2(aa,-1,0,d);
for(int v:cnodes){
if(v==d)continue;
subdiam = max(subdiam,D2[v]);
}
}
LL ans = total - diam - subdiam;
// deb(total);deb(diam);deb(subdiam);dnl;
cout<<ans<<endl;
}
/*
ATTAATTA
*/
int main(){
ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
int t=1;
// cin>>t;
for(int cs=1;cs<=t;cs++)solve(cs);
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 4ms
memory: 9356kb
input:
5 1 2 1 1 3 2 1 4 3 1 5 4
output:
10
result:
ok single line: '10'
Test #2:
score: -100
Wrong Answer
time: 2ms
memory: 9440kb
input:
6 6 2 1 4 6 1 3 1 1 1 5 1 1 6 10
output:
16
result:
wrong answer 1st lines differ - expected: '15', found: '16'