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
- 18233 비트마스킹
- django settings.py
- java di
- django The requested operation has failed!
- 14711 타일 뒤집기
- django apache deploy error
- windows 원격 연결 설정
- 2643 색종이 올려 놓기
- The requested operation has failed!
- django 웹 페이지
- 2961 도영이가 만든 맛있는 음식
- 2961 java
- 공유기 원격 설정
- Problems occurred while performing provisioning operation
- 18233 java
- 18233 러버덕
- 2661 좋은 수열
- django windows 배포 에러
- 1188 음식 평론가
- APPEND_SLASH = FALSE
- 원격 연결 포트 포워딩
- django 프로젝트 시작
- 14711 java
- apache pythonpath
- 1188 java
- 2643 java
- 2661 java
- django
- django httpd error
- windows apache wsgi 에러
Archives
라이브러리는 도서관 아닌가요
백준 5002 도어맨 java greedy 본문
https://www.acmicpc.net/problem/5002
참고:
1. 문자열을 일일이 수정하는 데에 있어서 StringBuilder의 setCharAt 메서드를 활용했었다.
2. 그래서 문자열을 애시당초 StringBuilder로 받았었다.
3. 왜 스택을 썼는지 모르겠지만, 스택으로 받아서 넣었었다. 그냥 갯수만 세도 되니까 사실 굳이 쓰지 않아도 된다.
4. 문제 풀다가 앞서 갱신한 tempCount를 그대로 활용했다가 큰일날 뻔 했었다.
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Stack;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int n = Integer.parseInt(br.readLine());
StringBuilder people = new StringBuilder(br.readLine());
int manCount=0, womanCount=0;
Stack<Character> stack = new Stack<>();
for(int i=0; i<people.length(); ++i){
boolean sexCheck = people.charAt(i) == 'M'; // 삼항 연산 필요 없음
int tempCount;
int diff;
if(sexCheck){ // man
tempCount = manCount + 1;
diff = Math.abs(tempCount - womanCount);
}
else{ // woman
tempCount = womanCount + 1;
diff = Math.abs(tempCount - manCount);
}
if(n < diff){ // 남녀차가 n보다 크다
int iPlus1 = i+1; // 다음 사람 미리보기
if(iPlus1 < people.length()){ // 인덱스 범위 안이다.
if(people.charAt(iPlus1) != people.charAt(i)){
stack.push(people.charAt(iPlus1));
char temp = people.charAt(iPlus1);
people.setCharAt(iPlus1, people.charAt(i));
people.setCharAt(i, temp);
if(sexCheck) ++womanCount;
else ++manCount;
}
else break;
}
else break;
}
else { // 범위 안에 들어오면 그냥 추가
stack.push(people.charAt(i));
if(sexCheck) manCount = tempCount;
else womanCount = tempCount;
}
}
System.out.print(stack.size());
}
}
'알고리즘 문제' 카테고리의 다른 글
백준 2643 색종이 올려놓기 java (dp) (1) | 2022.09.25 |
---|---|
백준 1188 음식 평론가 java (greedy, gcd) (0) | 2022.09.22 |
백준 6068 시간 관리하기 java greedy (0) | 2022.09.08 |
백준 (BOJ) 4781 사탕가게 java greedy (0) | 2022.09.08 |
백준 (BOJ) 25391 특별상 java greedy (0) | 2022.09.07 |
Comments