[백준]1920번문제
백준 1920번 문제는 이분검색을 사용합니다. #include #include //c++using namespace std;int card[100001];int serch[100001]; //a[0], a[1], ... a[9]를 오름차순으로 정렬하고 싶으면,sort(a,a+10); 라 호출하면 됩니다. bool twoserch(int left, int right, int serchnum){ int mid = (left + right) / 2; bool result; if (left > right || right serchnum){ result = twoserch(left, mid - 1, serchnum); } else if (card[mid] < serchnum) { result = twoserch(..