This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
#define fi first
#define se second
vector<int>a[405];
map<int,int>lost;
int max_cover[1<<20];
vector<vector<int>>cutoff;
vector<pair<int,int>>intervals;
vector<int>dep[405];
int n,k;
void process(int at,int prev,int depth)
{
dep[depth].push_back(at);
if(depth==k){
lost[at]=lost.size();
cutoff[at]={at};
return;
}
for(int v:a[at])if(v!=prev){
process(v,at,depth+1);
cutoff[at].insert(cutoff[at].end(),cutoff[v].begin(),cutoff[v].end());
}
}
main()
{
cin>>n>>k;
cutoff.resize(n+1);
for(int i=1;i<n;i++){
int x,y;
cin>>x>>y;
x--;
y--;
a[x].push_back(y);
a[y].push_back(x);
}
if(k>=n*n)return cout<<"DA",0;
process(0,0,0);
for(const vector<int>&cc:cutoff){
if(cc.empty()){
intervals.push_back({-1,-1});
}
else intervals.push_back({lost[cc.front()]+1,lost[cc.back()]+1});
}
max_cover[0]=0;
for(int mask=1;mask<(1<<k);mask++){
int &curr=max_cover[mask];
for(int to_add=0;to_add<k;to_add++){
if((mask>>(to_add))&1){
int pre=max_cover[mask^(1<<to_add)];
for(int v:dep[to_add+1]){
if(intervals[v].fi<=(int)pre+1){
curr=max(curr,intervals[v].se);
}
}
}
}
if(max_cover[mask]==lost.size()){
cout<<"DA";
return 0;
}
}
cout<<"NE";
return 0;
}
Compilation message (stderr)
burza.cpp:26:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
26 | main()
| ^~~~
burza.cpp: In function 'int main()':
burza.cpp:59:27: warning: comparison of integer expressions of different signedness: 'int' and 'std::map<int, int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
59 | if(max_cover[mask]==lost.size()){
| ~~~~~~~~~~~~~~~^~~~~~~~~~~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |