#include "lokahia.h"
#include <stdio.h>
int root[205]; // who is root?
int select[205]; // able to get mana?
int findRoot(int r, int leaf) {
if(r == leaf) return select[r];
int temp = root[leaf];
select[r] += select[leaf];
root[leaf] = r;
select[leaf] = 0;
return temp == -1 ? select[r]: findRoot(r, temp);
}
int getRoot(int n) {
int r = root[n];
if(r == -1) return n;
findRoot(r, n);
root[n] = getRoot(r);
return root[n];
}
int FindBase(int N){
int target = N / 2;
int boss[205];
int bossNum = 0;
for(int i =0; i < N; i++) {
root[i] = -1;
select[i] = 1;
boss[i] = 0;
}
for(int i =0; i< N;) {
int s = 1;
boss[bossNum++] = i;
for(int j =i+1; j < N; j++) {
if(getRoot(i) == getRoot(j)) continue;
int r = CollectRelics(getRoot(i), getRoot(j));
if( r == -1) {
s--;
if(s == 0) {
i = j+1;
if(i == N) return -1;
break;
}
continue;
}
int num = findRoot(r, i);
num = findRoot(r,j);
if(num > target) return getRoot(r);
s++;
}
}
int c = boss[bossNum-1];
for(int i =0; i < bossNum-1; i++) {
int a = boss[i];
if(getRoot(c) == getRoot(a)) continue;
int r = CollectRelics(getRoot(c), getRoot(a));
if(r == -1) {
int b = boss[i+1];
for(int j = a+1; j < b; j++) {
if(getRoot(c) == getRoot(j)) continue;
if(getRoot(j) != j) continue;
r = CollectRelics(getRoot(c), getRoot(j));
if(r == -1) continue;
int num = findRoot(r, c);
num = findRoot(r, j);
if(num > target) return getRoot(r);
}
continue;
}
int num = findRoot(r, c);
num = findRoot(r, a);
if(num > target) return getRoot(r);
}
if(select[getRoot(c)] > target ) return getRoot(c);
return -1;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
2 ms |
1000 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
2 |
Incorrect |
1 ms |
640 KB |
Wrong |
3 |
Correct |
1 ms |
492 KB |
Correct : C = 59 |
4 |
Correct |
1 ms |
640 KB |
Correct : C = 170 |
5 |
Correct |
1 ms |
620 KB |
Correct : C = 100 |
6 |
Runtime error |
1 ms |
876 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
7 |
Runtime error |
2 ms |
1004 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
8 |
Correct |
1 ms |
620 KB |
Correct : C = 187 |
9 |
Incorrect |
1 ms |
620 KB |
Wrong |
10 |
Correct |
1 ms |
620 KB |
Correct : C = 111 |
11 |
Correct |
1 ms |
620 KB |
Correct : C = 58 |
12 |
Correct |
1 ms |
620 KB |
Correct : C = 168 |
13 |
Incorrect |
1 ms |
620 KB |
Wrong |
14 |
Runtime error |
3 ms |
1004 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
15 |
Incorrect |
1 ms |
492 KB |
Wrong |
16 |
Runtime error |
2 ms |
876 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
17 |
Runtime error |
2 ms |
1004 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
18 |
Correct |
1 ms |
492 KB |
Correct : C = 2 |
19 |
Correct |
1 ms |
620 KB |
Correct : C = 99 |
20 |
Runtime error |
2 ms |
1004 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
21 |
Runtime error |
2 ms |
1004 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
22 |
Runtime error |
2 ms |
876 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
23 |
Runtime error |
1 ms |
748 KB |
Execution killed with signal 11 (could be triggered by violating memory limits) |
24 |
Correct |
1 ms |
620 KB |
Correct : C = 60 |
25 |
Correct |
1 ms |
620 KB |
Correct : C = 115 |
26 |
Correct |
1 ms |
492 KB |
Correct : C = 102 |
27 |
Correct |
1 ms |
620 KB |
Correct : C = 98 |