이중우선순위큐1 [프로그래머스]힙(Heap) : 이중우선순위큐 (level 3) (c++) https://programmers.co.kr/learn/courses/30/lessons/42628 코딩테스트 연습 - 이중우선순위큐 programmers.co.kr 방법 1: int배열 사용 #include #include #include #include using namespace std; int datas[1000000]; vector solution(vector operations) { int start = 0, end = 0; for (string line : operations) { // 명령어, 숫자 받아오기 stringstream ss(line); char op; int num; ss >> op >> num; // 명령어 I : 끝 인덱스 자리에 숫자 삽입, 끝 인덱스 증가 if (op .. 2020. 6. 20. 이전 1 다음