일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 코틀린기초
- replace()
- dp
- 백준 1043번 거짓말 - java 분리 집합
- HashSet
- 백준 2473번 세 용액 - java
- 프로그래머스
- HashMap
- mysql hy000 에러
- map
- kotlin
- 백준 1647번 도시 분할 계획 - java
- 백준 1541
- Stack
- 프로그래머스 자바
- StringTokenizer
- 백준 1806번 부분합 java
- 프로그래머스 java
- StringBuilder
- 최소 힙 1927
- ac 5430번
- 백준 1197번 최소 스패닝 트리 - java
- 백준 2467번 용액 자바 - 이분탐색
- 백준 3190번
- 18111번 마인크래프트 - java 구현
- append
- 백준 14938번 서강그라운드
- hash
- toUpperCase
- Java
Archives
- Today
- Total
말하는 컴공감자의 텃밭
프로그래머스 햄버거 만들기 <7점>- 자바(java) Stack 본문
728x90
처음에 문제를 대충읽고, 너무 단순하네 했다가 재료를 사용하면 그 쪽은 공백으로 처리를 해야해서 Stack을 떠올렸다.
햄버거도 스택처럼 쌓아야하니까
스택 자료구조에서는 push pop get 등을 사용했다
. 간단한 예제는 아래와 같습니당
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | Stack<Integer> stack = new Stack<Integer>(); stack.push(10); stack.push(20); int element = stack.get(stack.size() - 2); // 두번째인 20 출력 Stack<Integer> stack = new Stack<Integer>(); stack.push(10); stack.push(20); int element = stack.get(1); // 1번째 위치인 10 출력 Stack<Integer> stack = new Stack<Integer>(); stack.push(10); stack.push(20); int size = stack.size(); // 사이즈는 2 Stack<Integer> stack = new Stack<Integer>(); stack.push(10); stack.push(20); Stack<Integer> stack = new Stack<Integer>(); stack.push(10); stack.push(20); int topElement = stack.pop(); // 20 제거. | cs |
완성된 코드
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 | import java.util.*; class Solution { public int solution(int[] ing) { int answer = 0; Stack<Integer> st = new Stack<Integer>(); for (int a : ing) { st.push(a); if (st.size() >= 4) { // 스택에 4개이상 재료가 있으면. if (st.get(st.size() - 1) == 1 && st.get(st.size() - 2) == 3 && st.get(st.size() - 3) == 2 && st.get(st.size() - 4) == 1) { answer++; for (int i = 0; i < 4; i++) { st.pop(); // 재료 팝팝 } } } } return answer; } } | cs |
728x90
'알고리즘 > Programmers - Java' 카테고리의 다른 글
프로그래머스 올바른괄호 <2점> - 자바(java) Stack (0) | 2023.06.27 |
---|---|
프로그래머스 JadenCase 문자열 만들기 <2점> - 자바(java) (0) | 2023.06.26 |
프로그래머스 안전지대 <2점> - 자바(java) (0) | 2023.06.18 |
프로그래머스 테이블 해시 함수 <level2> - 자바(java) 2차원배열 정렬, XOR 연산 (1) | 2023.06.17 |
프로그래머스 명예의전당 - 자바(java) 우선순위 큐 (0) | 2023.06.14 |
Comments