QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#660789 | #6307. Chase Game 2 | candy34# | WA | 8ms | 7276kb | C++17 | 1.2kb | 2024-10-20 13:22:52 | 2024-10-20 13:22:52 |
Judging History
answer
#include<bits/stdc++.h>
#define int long long
#define endl '\n'
#define ph push_back
#define pp pop_back
using namespace std;
const int N=1e5+5,inf=1e18;
int T,n;
int tot,deg[N],id[N],cnt[N];
// priority_queue<int>q;
vector<int>eg[N];
void clear()
{
tot=0;
for(int i=1;i<=n;i++) eg[i].clear();
for(int i=1;i<=n;i++) deg[i]=id[i]=cnt[i]=0;
// while(!q.empty()) q.pop();
}
signed main()
{
ios::sync_with_stdio(false);
cin.tie(0); cout.tie(0);
cin>>T;
while(T--)
{
cin>>n;
clear();
for(int i=1,u,v;i<n;i++)
{
cin>>u>>v;
deg[u]++; deg[v]++;
eg[u].ph(v); eg[v].ph(u);
}
if(n==2) { cout<<-1<<endl; continue; }
for(int i=1;i<=n;i++)
if(deg[i]==1)
{
int fa=eg[i][0];
if(!id[fa]) id[fa]=++tot;
cnt[tot]++;
}
if(tot==1) { cout<<-1<<endl; continue; }
// for(int i=1;i<=tot;i++) q.push(cnt[i]);
sort(cnt+1,cnt+tot+1);
int sum=0;
for(int i=1;i<tot;i++) sum+=cnt[i];
if(cnt[tot]>=sum) cout<<cnt[tot]<<endl;
else cout<<(sum+cnt[tot]+1)/2<<endl;
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 6812kb
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: 0ms
memory: 7276kb
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: 8ms
memory: 7220kb
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 4 2 3 2 3 2 3 2 3 3 3 2 3 2 3 2 3 3 2 2 3 4 3 3 3 3 2 3 3 3 3 3 3 3 2 3 3 3 3 3 2 3 3 3 3 3 3 2 3 2 3 2 2 3 3 5 3 4 3 3 2 2 3 2 2 2 3 3 2 3 3 2 3 3 3 3 2 3 2 2 3 3 4 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 4 3 2 2 4 3 3 3 3 2 3 ...
result:
wrong answer 7th numbers differ - expected: '3', found: '4'