# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
242563 |
2020-06-28T08:49:53 Z |
Vimmer |
Burza (COCI16_burza) |
C++14 |
|
1000 ms |
65656 KB |
#include <bits/stdc++.h>
//#include <ext/pb_ds/assoc_container.hpp>
//#include <ext/pb_ds/tree_policy.hpp>
#pragma GCC optimize("unroll-loops")
#pragma GCC optimize("-O3")
#pragma GCC optimize("Ofast")
//#pragma GCC optimize("fast-math")
//#pragma GCC optimize("no-stack-protector")
#define F first
#define S second
#define sz(x) int(x.size())
#define pb push_back
#define N 405
#define M ll(1e9 + 7)
#define inf 1e9 + 1e9
using namespace std;
//using namespace __gnu_pbds;
typedef long double ld;
typedef long long ll;
typedef short int si;
typedef array <int, 2> a2;
//typedef tree <int, null_type, less_equal<int>, rb_tree_tag, tree_order_statistics_node_update> ordered_set;
vector <int> g[N];
int n, k, h[N], mx_h[N];
bool f[N][N][N], dp[N][N];
void dfs(int v, int p)
{
if (p != -1) h[v] = h[p] + 1;
mx_h[v] = h[v];
if (h[v] == k)
{
for (int i = 0; i < N; i++)
for (int j = 0; j < N; j++) f[v][i][j] = 0;
for (int i = 0; i < k; i++) f[v][i][1] = 1;
return;
}
for (auto it : g[v])
{
if (it == p) continue;
dfs(it, v);
mx_h[v] = max(mx_h[v], mx_h[it]);
if (mx_h[it] >= k)
{
memset(dp, 0, sizeof(dp));
for (int i = 0; i < k; i++)
for (int j = 0; j <= k; j++)
if (f[v][i][j])
{
for (int u = i + j; u < k; u++)
for (int kl = 0; kl + j <= k; kl++)
if (f[it][u][kl]) dp[i][kl + j] = 1;
}
for (int i = 0; i < k; i++)
for (int j = 0; j <= k; j++) f[v][i][j] = dp[i][j];
}
}
for (int i = 0; i < h[v]; i++) f[v][i][1] = 1;
}
int main()
{
//freopen("input.txt", "r", stdin); //freopen("output4.txt", "w", stdout);
ios_base::sync_with_stdio(0); istream::sync_with_stdio(0); cin.tie(0); cout.tie(0);
cin >> n >> k;
for (int i = 1; i < n; i++)
{
int x, y;
cin >> x >> y;
g[x].pb(y);
g[y].pb(x);
}
for (int i = 0; i < N; i++)
for (int j = 0; j < N; j++)
for (int u = 0; u < N; u++) f[i][j][u] = 1;
dfs(1, -1);
for (int j = 0; j <= k; j++)
if (f[1][0][j]) {cout << "DA" << endl; exit(0);}
cout << "NE" << endl;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
39 ms |
65536 KB |
Output is correct |
2 |
Correct |
44 ms |
65536 KB |
Output is correct |
3 |
Correct |
59 ms |
65528 KB |
Output is correct |
4 |
Execution timed out |
1099 ms |
65536 KB |
Time limit exceeded |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
43 ms |
65536 KB |
Output is correct |
2 |
Correct |
44 ms |
65532 KB |
Output is correct |
3 |
Correct |
65 ms |
65536 KB |
Output is correct |
4 |
Correct |
87 ms |
65524 KB |
Output is correct |
5 |
Incorrect |
43 ms |
65528 KB |
Output isn't correct |
6 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
47 ms |
65528 KB |
Output is correct |
2 |
Correct |
43 ms |
65536 KB |
Output is correct |
3 |
Correct |
63 ms |
65600 KB |
Output is correct |
4 |
Correct |
142 ms |
65528 KB |
Output is correct |
5 |
Incorrect |
40 ms |
65536 KB |
Output isn't correct |
6 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
43 ms |
65528 KB |
Output is correct |
2 |
Correct |
44 ms |
65528 KB |
Output is correct |
3 |
Correct |
68 ms |
65536 KB |
Output is correct |
4 |
Correct |
859 ms |
65632 KB |
Output is correct |
5 |
Incorrect |
39 ms |
65536 KB |
Output isn't correct |
6 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
44 ms |
65528 KB |
Output is correct |
2 |
Correct |
44 ms |
65536 KB |
Output is correct |
3 |
Correct |
61 ms |
65536 KB |
Output is correct |
4 |
Correct |
292 ms |
65656 KB |
Output is correct |
5 |
Incorrect |
42 ms |
65528 KB |
Output isn't correct |
6 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
43 ms |
65532 KB |
Output is correct |
2 |
Correct |
42 ms |
65528 KB |
Output is correct |
3 |
Correct |
66 ms |
65528 KB |
Output is correct |
4 |
Execution timed out |
1099 ms |
65528 KB |
Time limit exceeded |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
45 ms |
65536 KB |
Output is correct |
2 |
Correct |
43 ms |
65536 KB |
Output is correct |
3 |
Correct |
66 ms |
65528 KB |
Output is correct |
4 |
Execution timed out |
1094 ms |
65536 KB |
Time limit exceeded |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
41 ms |
65528 KB |
Output is correct |
2 |
Correct |
43 ms |
65528 KB |
Output is correct |
3 |
Correct |
69 ms |
65528 KB |
Output is correct |
4 |
Execution timed out |
1097 ms |
65536 KB |
Time limit exceeded |
5 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
41 ms |
65528 KB |
Output is correct |
2 |
Correct |
46 ms |
65536 KB |
Output is correct |
3 |
Correct |
64 ms |
65536 KB |
Output is correct |
4 |
Correct |
464 ms |
65524 KB |
Output is correct |
5 |
Incorrect |
39 ms |
65536 KB |
Output isn't correct |
6 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
40 ms |
65528 KB |
Output is correct |
2 |
Correct |
47 ms |
65536 KB |
Output is correct |
3 |
Correct |
63 ms |
65536 KB |
Output is correct |
4 |
Correct |
133 ms |
65536 KB |
Output is correct |
5 |
Incorrect |
47 ms |
65536 KB |
Output isn't correct |
6 |
Halted |
0 ms |
0 KB |
- |