QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#698982 | #7684. Sweet Sugar | jiangzhihui# | TL | 859ms | 75812kb | C++14 | 1.2kb | 2024-11-01 23:32:18 | 2024-11-01 23:32:19 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
const int N=1e6+5;
vector<int> gr[N];
int n,m,a[N];
set<int> f[N];
int ans;
bool cmp(int x,int y){
return f[x].size()>f[y].size();
}
void dfs(int u,int fa){
vector<int> t;
for(auto v:gr[u]){
if(v==fa)continue;
dfs(v,u);
t.push_back(v);
}
sort(t.begin(),t.end(),cmp);
f[u].insert(a[u]);
for(auto v:t){
vector<int> tmp;
for(auto x:f[u]){
for(auto y:f[v]){
tmp.push_back(x+y);
}
}
for(auto x:tmp){
f[u].insert(x);
}
}
auto z=f[u].find(m);
if(z!=f[u].end()){
ans++;
f[u].clear();
}
}
void solve(){
cin>>n>>m;
ans=0;
for(int i=1;i<=n;i++){
cin>>a[i];
gr[i].clear();
f[i].clear();
}
for(int i=1;i<n;i++){
int u,v;
cin>>u>>v;
gr[u].push_back(v);
gr[v].push_back(u);
}
dfs(1,0);
cout<<ans<<'\n';
}
int main(){
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int T;
cin>>T;
while(T--){
solve();
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 4ms
memory: 75812kb
input:
4 7 5 1 2 1 2 2 1 2 1 2 2 3 3 4 3 5 5 6 5 7 2 2 1 0 1 2 1 1 1 1 2 1
output:
2 0 1 0
result:
ok 4 number(s): "2 0 1 0"
Test #2:
score: 0
Accepted
time: 8ms
memory: 75776kb
input:
12 1 1 0 1 1 1 1 1 2 1 2 0 1 2 1 1 2 2 1 3 0 1 3 1 1 3 2 1 2000000 0 1 2000000 1 1 2000000 2
output:
0 1 0 0 0 1 0 0 0 0 0 0
result:
ok 12 numbers
Test #3:
score: 0
Accepted
time: 302ms
memory: 75604kb
input:
200000 5 2 1 1 0 0 1 2 4 5 2 4 1 3 2 5 1 0 0 0 0 0 5 1 1 2 3 2 5 4 5 3 1 0 0 0 1 1 4 4 2 3 4 5 2 5 9 1 0 0 0 2 4 3 2 1 3 1 5 1 5 3 0 1 1 0 1 5 4 2 1 4 3 5 1 5 1 0 2 1 1 1 5 3 2 4 3 4 1 4 5 1 1 0 1 1 0 1 5 4 2 1 3 5 2 5 7 0 2 1 1 2 5 1 2 3 2 5 5 4 5 5 0 1 0 1 0 2 4 4 3 5 2 1 5 5 1 0 0 1 0 1 4 1 4 5 2...
output:
1 0 0 0 1 3 3 0 0 2 0 0 2 1 0 0 1 1 0 2 0 1 0 2 1 0 0 0 0 0 1 2 0 0 2 2 0 1 0 0 0 0 3 3 0 0 1 1 2 1 2 0 4 0 1 1 0 1 0 0 1 5 0 1 1 1 0 1 1 1 1 1 1 0 1 1 1 0 3 1 0 1 0 0 4 0 0 0 1 1 0 0 1 0 2 0 5 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 1 0 0 1 1 0 1 0 1 1 1 2 0 1 2 0 0 2 0 0 1 0 0 0 0 0 ...
result:
ok 200000 numbers
Test #4:
score: 0
Accepted
time: 317ms
memory: 75788kb
input:
100000 10 16 0 1 0 1 0 1 1 0 1 1 4 10 3 10 9 1 4 7 5 2 9 5 6 9 2 3 8 4 10 18 1 0 0 1 0 0 1 1 0 2 5 1 4 2 5 3 3 4 2 10 4 9 3 8 7 3 6 5 10 13 0 1 0 1 0 1 1 0 1 1 5 2 4 3 1 6 8 9 1 8 3 5 9 4 7 6 3 10 10 16 1 0 1 0 1 1 1 0 1 1 6 8 2 4 9 6 2 6 4 10 5 3 1 6 8 7 3 6 10 13 0 0 0 0 1 0 1 0 1 0 2 1 2 7 7 9 7 ...
output:
0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 0 1 1 0 1 1 0 0 0 1 0 0 0 0 0 0 2 1 2 1 0 2 0 0 1 0 0 2 5 1 0 2 1 0 0 1 0 0 1 1 0 1 0 1 7 0 1 1 0 0 1 1 8 1 0 1 1 1 1 0 1 1 4 0 1 0 0 0 3 0 0 2 1 10 1 1 0 2 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 7 0 0 2 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 5 0 6 1 2 0 1 0 0 0 0 4 1 0 0 0 7 0...
result:
ok 100000 numbers
Test #5:
score: 0
Accepted
time: 469ms
memory: 75732kb
input:
50000 20 37 2 1 0 1 1 0 0 0 1 1 1 1 1 1 0 1 1 1 0 1 3 17 14 8 8 16 18 4 14 20 7 10 10 6 2 10 13 11 5 3 6 5 6 13 11 18 1 6 12 9 9 8 15 16 19 5 9 5 20 13 0 0 0 0 1 2 1 1 0 1 0 0 0 0 0 0 1 0 0 1 17 2 3 5 11 13 12 14 13 2 19 3 1 7 12 15 6 10 17 8 20 7 1 3 3 6 13 15 16 6 3 9 9 4 13 18 3 2 20 13 0 0 0 2 0...
output:
0 0 0 0 0 0 0 0 5 1 0 1 17 3 0 0 0 1 0 1 0 0 0 1 1 0 1 0 0 0 0 1 0 1 0 1 0 1 1 0 2 3 0 1 2 1 1 0 1 1 0 0 2 0 2 0 1 1 5 1 0 1 0 15 2 3 1 0 1 2 1 1 1 2 0 1 1 1 1 1 18 1 1 2 1 2 4 0 2 1 5 0 1 0 1 1 9 0 0 0 0 1 0 8 0 0 0 1 0 3 0 0 3 1 0 0 0 1 0 0 1 0 5 0 0 0 0 0 0 0 9 0 1 0 3 0 0 0 0 0 0 3 1 1 1 1 0 2 1...
result:
ok 50000 numbers
Test #6:
score: 0
Accepted
time: 859ms
memory: 75812kb
input:
20000 50 81 1 0 1 0 0 1 0 2 1 1 0 1 1 0 0 0 1 1 1 1 1 0 1 0 1 1 1 0 1 0 1 0 1 0 1 0 0 1 0 1 0 1 1 0 1 1 0 1 0 1 45 6 43 7 29 38 3 27 42 50 27 32 50 24 41 6 12 32 17 18 6 31 44 5 2 9 2 32 28 26 2 20 40 47 34 27 16 43 4 23 36 43 9 13 19 47 4 50 25 48 37 19 49 22 42 11 46 25 1 15 10 16 8 23 6 39 30 8 2...
output:
0 3 0 0 0 0 23 0 0 0 0 0 1 0 0 1 1 0 0 0 8 0 2 4 0 6 0 0 1 0 0 1 0 1 0 0 0 0 1 0 0 1 1 1 0 0 1 0 3 1 1 1 1 3 0 0 1 2 1 1 3 1 1 1 1 0 5 1 0 0 0 1 2 1 7 4 3 2 1 0 1 0 1 0 3 1 3 1 1 1 1 1 1 0 1 1 0 0 1 0 1 0 0 0 0 0 1 0 0 0 1 0 11 0 0 1 0 0 17 3 0 4 2 0 0 2 1 2 0 0 3 1 0 0 0 0 1 0 2 0 0 2 0 0 2 1 1 1 7...
result:
ok 20000 numbers
Test #7:
score: -100
Time Limit Exceeded
input:
2000 500 895 1 2 0 0 1 0 1 1 0 0 0 0 1 1 0 0 1 0 1 0 1 0 1 0 0 1 0 0 0 0 1 1 1 0 0 0 0 1 1 1 0 1 1 1 0 1 0 0 1 1 0 0 1 0 0 1 1 1 1 1 0 1 1 1 0 1 1 1 1 0 0 0 0 0 1 1 0 0 0 0 0 1 1 1 1 0 0 1 1 0 0 1 0 1 0 1 1 1 0 0 1 1 0 0 1 1 0 1 0 0 0 0 0 1 1 1 1 0 0 1 0 0 1 1 2 0 0 0 1 1 0 0 0 0 0 1 1 0 1 0 1 0 0 1...