Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 정렬알고리즘
- 언리얼가비지컬렉터
- 알고리즘
- moreeffectiveC++
- UE_LOG
- 강참조
- 람다사용정렬
- 정렬
- 데이터애셋
- 애셋로드
- 선택정렬
- UELOG
- 약참조
- 크리티컬섹션
- enumasByue
- 자료구조
- 언리얼엔진구조체
- 람다
- UML관련
- UE4 커스텀로그
- dataasset
- C++
- 스마트포인터
- BFS
- stl
- unorder_map
- 프로그래머스
- C++최적화
- 델리게이트
- map
Archives
- Today
- Total
기억을 위한 기록들
[프로그래머스 lv 1 ] - 크레인 인형뽑기 게임 본문
programmers.co.kr/learn/courses/30/lessons/64061
#include <string>
#include <vector>
#include <stack>
using namespace std;
int solution(vector<vector<int>> board, vector<int> moves) {
int answer = 0;
stack<int> st;
for(int j=0;j<moves.size();j++) //뽑는 순서대로 진행
{
int curCrain=moves[j]; //뽑아야할 크레인 위치
int num=-1;
for(int i=0;i<board[curCrain-1].size();i++) //크레인위치에서 제일 위에 있는 번호 뽑기
{
if(board[i][curCrain-1]!=0) //0이 아니라면 뽑아야 할 수
{
num=board[i][curCrain-1];
board[i][curCrain - 1] = 0;
// find=true;
break;
}
}
if(num!=-1)
{
if(!st.empty())
{
if(st.top()==num)
{
st.pop();
answer+=2;
}else
{
st.push(num);
}
}else
{
st.push(num);
}
}
}
return answer;
}
'Coding Test - cpp > Stack, Queue' 카테고리의 다른 글
[프로그래머스 lv 2 ] - 올바른 괄호 (C++) (0) | 2023.11.17 |
---|---|
[프로그래머스 lv 1 ] - [1차] 다트 게임 (0) | 2021.10.01 |
[프로그래머스 lv 2 ] - 짝지어 제거하기 (0) | 2021.07.14 |
[프로그래머스 lv 2 ] - 기능개발 (0) | 2021.05.06 |