250x250
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 |
Tags
- binding
- 테스트
- viewmodel
- android
- Button
- Kotlin
- 앱바
- Compose
- CustomScrollView
- ScrollView
- scroll
- Coroutines
- LifeCycle
- Navigation
- 계측
- textfield
- activity
- drift
- tabbar
- 안드로이드
- intent
- DART
- 앱
- appbar
- data
- livedata
- Dialog
- Flutter
- textview
- TEST
Archives
- Today
- Total
Study Record
[프로그래머스] Level2 - 프린터 <Queue> 본문
728x90
#include <string>
#include <vector>
#include <queue>
using namespace std;
int solution(vector<int> priorities, int location) {
int answer = 0;
int biggerNum[10] = { 0 };
queue<int> waitting;
for (int i = 0; i < priorities.size(); i++) {
biggerNum[priorities[i]]++;
if (location == i) waitting.push((-1) * priorities[i]);
else waitting.push(priorities[i]);
}
for (int i = 9; i > 0; i--) {
if (biggerNum[i] == 0) continue;
int count = biggerNum[i];
while (count > 0) {
int num = waitting.front();
waitting.pop();
if (num == i) {
answer++;
count--;
}
else if (num * (-1) == i) {
answer++;
break;
}
else {
waitting.push(num);
}
}
if (count > 0) break;
}
return answer;
}
728x90
'알고리즘' 카테고리의 다른 글
[프로그래머스] Level2 - 기능개발 (0) | 2021.12.03 |
---|---|
[프로그래머스] Level1 - 음양 더하기 / 내적 (0) | 2021.12.03 |
[프로그래머스] Level1 - 없는 숫자 더하기 (0) | 2021.12.02 |
[프로그래머스] Level2 - 카카오프렌즈 컬러링북 (0) | 2021.12.02 |
[프로그래머스] Level1 - 크레인 인형뽑기 게임 <스택> (0) | 2021.12.02 |