티스토리 뷰
네이버 공채 코딩테스트를 마치고 더 수련하기 위해 풀어본 문제이다.
1️⃣ GetMaxNumber()
n이 홀수이면 첫 자리가 7이고 모두 1
n이 짝수이면 모두 1이다.
static String GetMaxNumber(int leftCount) {
String result = "";
if (leftCount == 2) {
return "1";
} else if (leftCount == 3) {
return "7";
}
if (leftCount % 2 == 0) { // 짝수
while (leftCount != 0) {
result += "1";
leftCount -= 2;
}
} else {
result += "7";
leftCount -= 3;
while (leftCount > 0) {
result += "1";
leftCount -= 2;
}
}
return result;
}
2️⃣ GetMinNumber() 처음 접근 코드
남은 n이 0이 될 때까지 루프를 돌려준다.
숫자마다 필요한 성냥깨비 개수가 다르다.
남은 n이 어떤 수의 필요한 성냥깨비 개수와 같아지면 0이 아닌 그 수를 넣어준다.
static String GetMinNumber(int leftCount) {
String result = "";
switch (leftCount) {
case 2:
return "1";
case 3:
return "7";
case 4:
return "4";
case 5:
return "2";
case 6:
return "6";
case 7:
return "8";
default:
result += "1";
leftCount -= 2;
break;
}
while (leftCount > 0) {
switch (leftCount) {
case 2:
result += "1";
leftCount -= 2;
break;
case 3:
result += "7";
leftCount -= 3;
break;
case 4:
result += "4";
leftCount -= 4;
break;
case 5:
result += "2";
leftCount -= 5;
break;
case 6:
result += "0";
leftCount -= 6;
break;
case 7:
result += "8";
leftCount -= 7;
break;
default:
result += "0";
leftCount -= 6;
break;
}
}
return result;
}
⛔ 반례
0이 아닌 8이 필요한 성냥깨비 개수가 많으므로 이건 틀린 접근!
GetMinNumber() : DP로 풀어야해 ❗
private static void GetMinNumber() {
min[2] = 1;
min[3] = 7;
min[4] = 4;
min[5] = 2;
min[6] = 6; // 다른 숫자 뒤에 올 때는 0
min[7] = 8;
min[8] = 10;
String[] add = { "1", "7", "4", "2", "0", "8" };
for (int i = 9; i <= SIZE; i++) {
for (int j = 2; j <= 7; j++) {
String curr = String.valueOf(min[i - j]) + add[j - 2];
min[i] = Math.min(min[i], Long.parseLong(curr));
}
}
}
성냥깨비 모두 넣어봄으로써 값을 비교해준다.
주의사항 ❗
Math.min을 사용하므로 min 배열을 Long.MAX_VALUE로 초기화해줘야 한다.
INT.MAX_VALUE로 하게되면 오버플로우가 발생하므로 꼭 Long.MAX_VALUE를 사용하자!
for (int i = 0; i <= SIZE; i++) {
min[i] = Long.MAX_VALUE;
}
전체 코드
/**
* @틀린이유 잘못된 접근 방법
*/
import java.io.*;
public class Main {
public static void main(String[] args) throws IOException {
P3687();
}
static final int SIZE = 100;
static int[] matches = { 6, 2, 5, 5, 4, 5, 6, 3, 7, 6 };
static long[] min = new long[SIZE + 1];
static void P3687() throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int T = Integer.parseInt(br.readLine());
for (int i = 0; i <= SIZE; i++) {
min[i] = Long.MAX_VALUE;
}
GetMinNumber();
for (int testcase = 0; testcase < T; testcase++) {
int n = Integer.parseInt(br.readLine()); // 성냥개비의 개수
String maxNumber = GetMaxNumber(n);
System.out.println(min[n] + " " + maxNumber);
}
}
static String GetMaxNumber(int leftCount) {
String result = "";
if (leftCount == 2) {
return "1";
} else if (leftCount == 3) {
return "7";
}
if (leftCount % 2 == 0) { // 짝수
while (leftCount != 0) {
result += "1";
leftCount -= 2;
}
} else {
result += "7";
leftCount -= 3;
while (leftCount > 0) {
result += "1";
leftCount -= 2;
}
}
return result;
}
private static void GetMinNumber() {
min[2] = 1;
min[3] = 7;
min[4] = 4;
min[5] = 2;
min[6] = 6; // 다른 숫자 뒤에 올 때는 0
min[7] = 8;
min[8] = 10;
String[] add = { "1", "7", "4", "2", "0", "8" };
for (int i = 9; i <= SIZE; i++) {
for (int j = 2; j <= 7; j++) {
String curr = String.valueOf(min[i - j]) + add[j - 2];
min[i] = Math.min(min[i], Long.parseLong(curr));
}
}
}
}
'알고리즘' 카테고리의 다른 글
Baekjoon 4949 균형잡힌 세상 - 코딩 테스트 (0) | 2020.10.02 |
---|---|
Baekjoon 14719 빗물 - 코딩테스트 (0) | 2020.09.27 |
Baekjoon 2003 수들의 합 2 - 투 포인터 (0) | 2020.09.24 |
Baekjoon 1072 게임- 수학(확률) (0) | 2020.09.24 |
Baekjoon 5568 카드 놓기 - 비트 마스킹 & 재귀 (0) | 2020.09.22 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 클린 아키텍처
- 백준
- 디자인패턴
- BAEKJOON
- AWS
- 객체지향
- Kotlin
- Spring
- node.js
- C++
- 디자인 패턴
- Java
- 이펙티브 자바
- Algorithm
- Olympiad
- 테라폼
- kkoon9
- 이팩티브 자바
- 정규표현식
- 클린 코드
- programmers
- kotest
- BOJ
- 알고리즘
- Spring Boot
- 프로그래머스
- MSA
- 코테
- Effective Java
- JPA
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함