# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
1011100 |
2024-06-29T19:53:21 Z |
Oz121 |
Burza (COCI16_burza) |
Java 11 |
|
529 ms |
28728 KB |
import java.io.*;
import java.util.*;
public class burza {
public static int num; public static int k; public static HashMap<Integer, ArrayList<Integer>> tree;
public static int[] depth; public static int[][] interval; //Interval of leaves covered by a node
public static int count; public static HashMap<Integer, Integer> idx;
public static void main(String[] args) throws IOException {
BufferedReader scan = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer l1 = new StringTokenizer(scan.readLine());
num = Integer.parseInt(l1.nextToken()); k = Integer.parseInt(l1.nextToken()); tree = new HashMap<>();
for (int i = 0;i<num;i++) tree.put(i,new ArrayList<>());
for (int i = 0;i<num-1;i++) {
StringTokenizer st = new StringTokenizer(scan.readLine());
int a = Integer.parseInt(st.nextToken())-1; int b = Integer.parseInt(st.nextToken())-1;
tree.get(a).add(b); tree.get(b).add(a);
}
if (k*k>=num) System.out.println("NE");
else System.out.println(solve());
}
public static String solve () {
idx = new HashMap<>(); count = 0;
depth = new int[num];
Arrays.fill(depth, -1); depth[0] = 0;
dfs1(0);
interval = new int[num][2];
for (int i = 0;i<num;i++) {
interval[i][0] = Integer.MAX_VALUE; interval[i][1] = Integer.MIN_VALUE;
}
count = 0;
for (int i = 0;i<num;i++) {
if (depth[i]==k) {
interval[i][0] = idx.get(i); interval[i][1] = idx.get(i);
dfs2(i,i); count++;
}
}
//System.out.println(idx);
/*for (int i = 0;i<num;i++) {
System.out.println(interval[i][0]+" "+interval[i][1]);
}*/
int[] dp = new int[1<<k];
Arrays.fill(dp, -1); dp[0] = 0;
for (int i = 1;i<1<<k;i++) {
for (int j = 0;j<k;j++) {
if ((i&(1<<j))==0) continue;
int prev = i-(1<<j);
for (int l = 0;l<num;l++) {
if (depth[l]!=j+1) continue;
if (interval[l][0]<=dp[prev]+1) {
dp[i] = Math.max(dp[i], interval[l][1]);
}
}
}
}
if (dp[(1<<k)-1]==count-1) return "DA";
else return "NE";
}
public static void dfs1 (int curr) {
for (int next : tree.get(curr)) {
if (depth[next]==-1) {
depth[next] = depth[curr]+1;
if (depth[next]==k) {
idx.put(next, count); count++;
}
dfs1(next);
}
}
}
public static void dfs2 (int curr, int child) {
for (int next : tree.get(curr)) {
if (depth[next]<depth[curr]) { //Going up the tree
if (idx.get(child)<interval[next][0]) interval[next][0] = idx.get(child);
if (idx.get(child)>interval[next][1]) interval[next][1] = idx.get(child);
dfs2(next, child);
}
}
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
98 ms |
23104 KB |
Output is correct |
2 |
Correct |
529 ms |
22932 KB |
Output is correct |
3 |
Incorrect |
52 ms |
22644 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
472 ms |
22532 KB |
Output is correct |
2 |
Correct |
479 ms |
22596 KB |
Output is correct |
3 |
Incorrect |
61 ms |
21988 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
484 ms |
24648 KB |
Output is correct |
2 |
Correct |
453 ms |
22680 KB |
Output is correct |
3 |
Incorrect |
68 ms |
22528 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
156 ms |
22648 KB |
Output is correct |
2 |
Incorrect |
469 ms |
23208 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
436 ms |
22796 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
491 ms |
27032 KB |
Output is correct |
2 |
Correct |
422 ms |
22512 KB |
Output is correct |
3 |
Incorrect |
49 ms |
24568 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
475 ms |
24556 KB |
Output is correct |
2 |
Correct |
461 ms |
28728 KB |
Output is correct |
3 |
Incorrect |
49 ms |
22392 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
137 ms |
22920 KB |
Output is correct |
2 |
Correct |
467 ms |
22304 KB |
Output is correct |
3 |
Incorrect |
66 ms |
22432 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
92 ms |
22916 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
226 ms |
22616 KB |
Output is correct |
2 |
Correct |
483 ms |
25056 KB |
Output is correct |
3 |
Incorrect |
50 ms |
22408 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |