# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
98529 |
2019-02-23T20:43:40 Z |
dalgerok |
Burza (COCI16_burza) |
C++17 |
|
70 ms |
1264 KB |
#include<bits/stdc++.h>
using namespace std;
const int M = 405, N = 20;
int n, k, d[M];
int tin[M], tout[M], timer;
vector < int > g[M], q[M];
bitset < (1 << N) > dp[M];
void dfs(int v, int pr = -1){
if(d[v] == k){
tin[v] = timer++;
tout[v] = timer;
return;
}
tin[v] = timer;
for(int to : g[v]){
if(to != pr){
d[to] = d[v] + 1;
dfs(to, v);
}
}
tout[v] = timer;
}
int main(){
ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
cin >> n >> k;
if(k * k >= n){
return cout << "DA", 0;
}
for(int i = 1; i < n; i++){
int x, y;
cin >> x >> y;
x -= 1;
y -= 1;
g[x].push_back(y);
g[y].push_back(x);
}
dfs(0);
for(int i = 0; i < n; i++){
q[tin[i]].push_back(i);
}
dp[0][0] = true;
for(int i = 0; i < timer; i++){
for(int j = 0; j < (1 << k); j++){
if(dp[i][j] == true){
for(auto it : q[i]){
if(!((j >> d[it]) & 1)){
dp[tout[it]][j | (1 << d[it])] = true;
}
}
}
}
}
for(int i = 0; i < (1 << k); i++){
if(dp[timer][i] == true){
return cout << "DA", 0;
}
}
cout << "NE";
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
8 ms |
640 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
70 ms |
1016 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
59 ms |
1032 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
17 ms |
760 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
50 ms |
976 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
58 ms |
1044 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
60 ms |
1264 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
18 ms |
688 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
9 ms |
640 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
27 ms |
768 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |