import javax.swing.JEditorPane;
public class Haldovanie {
public static int hodnotaVStrome(int[] pole, String cesta) {
char a;
int index = 0;
for (int i = 0; i < cesta.length(); i++) {
a = cesta.charAt(i);
if (a == 'R') {
index = 2 * index + 2;
} else {
index = index * 2 + 1;
}
}
if (index >= pole.length) {
return -1;
}
return pole[index];
}
public static boolean jeHaldou(int[] pole) {
for (int i = 0; i < pole.length; i++) {
if (2 * i + 1 < pole.length) {
if (pole[i] != Math.max(pole[i], pole[2 * i + 1]))
return false;
}
if (2 * i + 2 < pole.length) {
if (pole[i] != Math.max(pole[i], pole[2 * i + 2]))
return false;
}
}
return true;
/*
* if (2 * i + 1 >= pole.length || 2 * i + 2 < pole.length) if (pole[i]
* != Math.max(pole[i], Math.max(pole[2 * i + 1], pole[2 * i + 2])))
* return false;
*/
}
public static void main(String[] args) {
int[] halda = new int[] {28, 25, 23, 20, 18, 15, 19, 10, 8, 18 };
System.out.println(hodnotaVStrome(halda, "RLL"));
System.out.println(hodnotaVStrome(halda, "LRR"));
System.out.println(hodnotaVStrome(halda, "LRL"));
System.out.println(jeHaldou(halda));
}
}