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
- Kotlin
- tabbar
- livedata
- Dialog
- LifeCycle
- DART
- android
- 앱바
- 계측
- CustomScrollView
- appbar
- data
- viewmodel
- activity
- drift
- intent
- Compose
- binding
- Flutter
- 테스트
- 안드로이드
- 앱
- textfield
- Coroutines
- ScrollView
- Button
- scroll
- Navigation
- TEST
- textview
Archives
- Today
- Total
Study Record
[프로그래머스] Level1 - 크레인 인형뽑기 게임 <스택> 본문
728x90
#include <string>
#include <vector>
#include <stack>
using namespace std;
int solution(vector<vector<int>> board, vector<int> moves) {
int answer = 0;
stack<int> dollStack;
for(int i=0; i< moves.size(); i++){
int index = moves[i] - 1;
int doll = 0;
for(int k=0; k<board.size(); k++){
if(board[k][index] != 0){
doll = board[k][index];
board[k][index] = 0;
break;
}
}
if(doll != 0){
// 스택의 가장 위에 값과 집을 인형이 같으면 파괴된다.
if(!dollStack.empty() && dollStack.top() == doll){
dollStack.pop();
answer += 2;
} else {
dollStack.push(doll);
}
}
}
return answer;
}
728x90
'알고리즘' 카테고리의 다른 글
[프로그래머스] Level1 - 없는 숫자 더하기 (0) | 2021.12.02 |
---|---|
[프로그래머스] Level2 - 카카오프렌즈 컬러링북 (0) | 2021.12.02 |
[프로그래머스] Level2 - 오픈채팅방 (0) | 2021.12.01 |
[프로그래머스] Level1 - 키패드 누르기 (0) | 2021.12.01 |
[프로그래머스] Level1 - 숫자 문자열과 영단어 (0) | 2021.11.30 |