Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- activity
- 알고리즘
- IntelliJ
- 16197
- 제어반전
- 백준
- insert
- ubuntu
- 프로그래머스
- goland
- data
- Android
- intent
- github
- 17837
- spring
- 단축키
- service
- Algorithm
- 큐빙
- Jenknis
- mysql
- vscode
- git
- 두 동전
- 데이터전달
- 데이터
- broadcastreceiver
- Java
- 안드로이드
Archives
- Today
- Total
해보자
프로그래머스_LV2_프린터 본문
https://programmers.co.kr/learn/courses/30/lessons/42587?language=cpp
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | #include <vector> #include <string> #include <deque> using namespace std; int solution(vector<int> priorities, int location) { int answer = 0; deque<pair<int, int>> dq; for ( int i=0; i < priorities.size(); i++) { dq.push_back(make_pair(i, priorities[i])); } while (!dq.empty()) { pair<int, int> temp = make_pair(dq.front().first, dq.front().second); bool bigPriority = false; for(int i = 0; i < dq.size(); i++) { if (temp.second < dq[i].second) { bigPriority = true; dq.pop_front(); dq.push_back(temp); break; } } if (!bigPriority) { dq.pop_front(); answer++; if (temp.first == location) { return answer; } } } return answer; } | cs |
'C++ > Solve & Think' 카테고리의 다른 글
프로그래머스_LV2_다리를 지나는 트럭 (0) | 2020.02.26 |
---|---|
프로그래머스_LV2_기능개발 (0) | 2020.02.21 |
백준_7576번_토마토 (0) | 2020.02.20 |
백준_10610번_30 (0) | 2020.02.12 |
백준_1966번_프린터 큐 (0) | 2019.12.18 |