https://www.algospot.com/judge/problem/read/KBODRAFT algospot.com :: KBODRAFT 이상한 드래프트 문제 정보 문제 2150년, Kureyo Baseball Organization(이하 KBO)은 100번째 구단의 창단을 승인하였다. 그 전까지는 지난 시즌의 순위에 따라 지그재그식으로 한 선수씩 선발하는 식이었지 www.algospot.com [ 입력 -> 삭제 -> 삽입 -> 결과 ]의 반복임. using namespace std; struct CARD{ CARD(int _index, int _power) { index = _index; power = _power; } int index; int power; }; list PLAYER[9]; int..