문제https://www.acmicpc.net/problem/9934 해설완전이진트리의 탐색에 대한 문제였음 완전 이진 트리에서 inorder의 경우 절반을 자르면 루트 노드가 나온다는 특징을 이용해야 하는 문제코드12345678910111213141516171819202122232425262728293031323334353637383940414243#include bits/stdc++.h>using namespace std; int k, num[1028];vectorint> ret[14]; void go(int first, int last, int level){ if (last first) { return; } if (first == last) { ret[level].push_ba..