2020-07-13 09:06:43 -07:00
|
|
|
import java.util.ArrayList;
|
|
|
|
|
|
|
|
|
|
public class Main
|
|
|
|
|
{
|
|
|
|
|
public static void main(String[] args)
|
|
|
|
|
{
|
|
|
|
|
Util.init();
|
|
|
|
|
|
2020-07-17 22:41:46 -07:00
|
|
|
Tree tree = new Tree(0, new ArrayList<Long>());
|
|
|
|
|
for (int i = 0; i < 9; i++) {
|
2020-07-13 09:06:43 -07:00
|
|
|
tree.step();
|
|
|
|
|
Util.printList(tree.longestPath());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|