#include "bits/stdc++.h"
#include <utility>
using namespace std;
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
#define endl '\n'
#define debug(x) std::cerr << #x << " = " << x << '\n';
template<typename T> bool ckmin(T& a, const T& b) { return b < a ? a = b, 1 : 0; }
template<typename T> bool ckmax(T& a, const T& b) { return a < b ? a = b, 1 : 0; }
constexpr int MOD = 1e9 + 7;
constexpr int INF = 0x3f3f3f3f;
constexpr long long LLINF = 0x3f3f3f3f3f3f3f3f;
const int MAXN = 405;
vector<int> adj[MAXN];
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int n, k; cin >> n >> k;
for (int i = 0; i < n - 1; i++) {
int u, v; cin >> u >> v;
--u, --v;
adj[u].push_back(v);
adj[v].push_back(u);
}
vector<vector<int>> paths;
queue<pair<vector<int>, int>> q;
q.push({{0}, 0});
while (q.size()) {
auto cur = q.front(); q.pop();
if (cur.first.size() == k + 1) {
paths.push_back(cur.first);
continue;
}
for (auto to : adj[cur.first.back()]) {
if (to == cur.second) continue;
vector<int> npath(cur.first);
npath.emplace_back(to);
q.push({npath, cur.first.back()});
}
}
vector<vector<int>> arr[k + 5];
vector<int> start(paths.size());
iota(all(start), 0);
arr[0].push_back(start);
for (int i = 0; i <= k; i++) {
for (auto active : arr[i]) if (!active.size()) return cout << "DA" << endl, 0;
set<int> s;
for (auto active : arr[i]) for (auto path : active) s.insert(paths[path][i + 1]);
for (auto off : s) { //construct new path without off
for (auto active : arr[i]) {
vector<int> nactive;
for (auto path : active) if (paths[path][i + 1] != off) nactive.push_back(path);
arr[i + 1].push_back(nactive);
}
}
}
cout << "NE" << endl;
return 0;
}
Compilation message
burza.cpp: In function 'int main()':
burza.cpp:37:26: warning: comparison of integer expressions of different signedness: 'std::vector<int>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
37 | if (cur.first.size() == k + 1) {
| ~~~~~~~~~~~~~~~~~^~~~~~~~
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1084 ms |
517348 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1065 ms |
413412 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1079 ms |
407784 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1045 ms |
322020 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1085 ms |
355088 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1063 ms |
431076 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1058 ms |
416908 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1082 ms |
437952 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1065 ms |
524288 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1046 ms |
381048 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |