QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#257638 | #6307. Chase Game 2 | pengpeng_fudan# | WA | 9ms | 5876kb | C++14 | 1.4kb | 2023-11-19 11:13:08 | 2023-11-19 11:13:09 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
vector<int> p[100010];
int fa[100010];
void dfs(int x,int f){
if(p[x].size()==1)fa[f]++;
for(auto i:p[x]){
if(i==f)continue;
dfs(i,x);
}
}
void solve(){
int n;cin>>n;
for(int i=1;i<=n;i++)p[i].clear(),fa[i]=0;
for(int i=0;i<n-1;i++){
int u,v;cin>>u>>v;
p[u].push_back(v);
p[v].push_back(u);
}
int r=1;
while(r<=n&&p[r].size()==1)r++;
if(r>n){
cout<<"-1\n";
return;
}
dfs(r,0);
sort(fa+1,fa+n+1);
int l=1;
while(fa[l]==0)l++;
if(l==n){
cout<<"-1\n";
return;
}
int r2=n,r1=n-1;
ll ans=0;
while(r1>=l){
if(fa[r2]>fa[r1]){
fa[r2]-=fa[r1];
ans+=fa[r1];
fa[r1]=0;
r1--;
}
else if(fa[r1]>fa[r2]){
fa[r1]-=fa[r2];
ans+=fa[r2];
fa[r2]=0;
r2=r1;
r1--;
}
else{
ans+=fa[r2];
fa[r1]=fa[r2]=0;
r2=r1-1;
r1=r2-1;
}
}
for(int i=l;i<=n;i++)ans+=fa[i];
cout<<ans<<"\n";
}
int main(){
ios::sync_with_stdio(0);
cin.tie(0);cout.tie(0);
int n;
cin>>n;
while(n--)solve();
return 0;
}
詳細信息
Test #1:
score: 100
Accepted
time: 2ms
memory: 5708kb
input:
4 2 1 2 4 1 2 2 3 3 4 4 1 2 2 3 2 4 5 1 2 2 3 3 4 3 5
output:
-1 1 -1 2
result:
ok 4 number(s): "-1 1 -1 2"
Test #2:
score: 0
Accepted
time: 5ms
memory: 5868kb
input:
10000 4 1 2 1 3 3 4 4 1 2 1 3 1 4 4 1 2 2 3 1 4 5 1 2 2 3 1 4 4 5 5 1 2 2 3 3 4 4 5 4 1 2 2 3 2 4 5 1 2 1 3 2 4 2 5 4 1 2 2 3 1 4 5 1 2 1 3 2 4 1 5 5 1 2 2 3 3 4 2 5 5 1 2 1 3 2 4 2 5 4 1 2 1 3 3 4 5 1 2 1 3 3 4 1 5 4 1 2 1 3 1 4 5 1 2 1 3 3 4 3 5 5 1 2 2 3 3 4 3 5 4 1 2 1 3 2 4 5 1 2 2 3 2 4 3 5 5 ...
output:
1 -1 1 1 1 -1 2 1 2 2 2 1 2 -1 2 2 1 2 2 1 1 1 -1 2 2 2 1 -1 1 1 2 1 1 -1 1 2 1 1 1 -1 1 1 2 2 2 1 1 1 -1 1 2 1 1 2 1 2 1 1 2 -1 -1 -1 2 2 2 1 1 1 2 2 2 -1 1 2 -1 1 1 -1 2 -1 -1 1 2 2 2 1 1 1 1 1 1 1 1 1 2 -1 1 1 2 -1 2 1 1 1 -1 2 -1 1 -1 -1 2 -1 2 1 2 2 1 1 1 1 2 1 1 1 1 -1 2 1 2 1 1 1 1 1 1 1 2 -1...
result:
ok 10000 numbers
Test #3:
score: -100
Wrong Answer
time: 9ms
memory: 5876kb
input:
10000 9 1 2 2 3 3 4 4 5 1 6 6 7 5 8 7 9 9 1 2 2 3 2 4 1 5 2 6 4 7 6 8 1 9 9 1 2 2 3 1 4 4 5 5 6 4 7 2 8 1 9 10 1 2 2 3 1 4 3 5 3 6 2 7 6 8 6 9 6 10 10 1 2 1 3 3 4 2 5 1 6 5 7 4 8 2 9 7 10 10 1 2 2 3 2 4 1 5 3 6 6 7 5 8 4 9 9 10 9 1 2 2 3 2 4 1 5 3 6 2 7 1 8 2 9 9 1 2 1 3 2 4 1 5 3 6 3 7 7 8 8 9 10 1...
output:
1 3 3 3 2 2 3 2 3 2 3 2 3 2 3 3 3 2 3 2 3 2 3 3 2 2 3 3 3 3 3 3 2 3 3 3 4 3 3 3 2 3 3 3 3 3 2 3 3 3 3 3 3 2 3 2 3 2 2 3 3 4 3 4 3 3 2 2 3 2 2 2 4 3 2 3 3 2 4 3 3 3 2 4 2 2 3 3 3 3 2 3 3 2 3 3 3 3 3 2 3 2 2 3 5 3 3 2 2 3 2 3 4 2 5 3 2 3 3 2 3 2 3 3 3 3 2 2 3 3 3 2 3 3 3 3 3 3 2 3 3 2 2 4 3 3 3 3 2 3 ...
result:
wrong answer 73rd numbers differ - expected: '3', found: '4'