반응형
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
- 프로그래머스
- HTTP
- 문자열
- TCP
- BFS
- Crawling
- Algorithm
- 알고리즘
- typescript
- 타입 챌린지
- HTTP 완벽 가이드
- 타입스크립트
- dp
- type challenge
- Node.js
- 레벨 1
- 크롤링
- 프로그래머스 레벨 2
- 소켓
- 수학
- dfs
- ip
- javascript
- 자바스크립트
- 쉬운 문제
- socket
- 그래프
- 백준
- 가천대
- Nestjs
Archives
- Today
- Total
kakasoo
[node.js] 부등호 ( 백준 2529번 ) 본문
반응형
const readline = require("readline");
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
});
const input = [];
rl.on("line", (line) => {
input.push(line);
}).on("close", () => {
const num = Number(input.splice(0, 1)) + 1;
const expression = input[0].split(" ");
const numbers = new Array(10).fill(0).map((el, i) => i);
const visited = new Array(10).fill(false);
const answer = [];
const dfs = (arr = []) => {
if (arr.length === num) {
answer.push([...arr]);
return;
}
for (let i = 0; i < numbers.length; i++) {
const curNumber = numbers[i];
const lastIdx = arr.length - 1;
const express = expression[lastIdx];
if (!visited[i]) {
if (
arr.length === 0 ||
new Function(
`return ${arr[lastIdx]}${express}${curNumber}`
)()
) {
visited[i] = true;
arr.push(curNumber);
dfs(arr);
arr.pop();
visited[i] = false;
}
}
}
};
dfs();
const answerArr = answer.map((el) => Number(el.join("")));
const maxValue = Math.max(...answerArr);
const minValue = Math.min(...answerArr);
const numPad = (number) => {
let str = String(number);
while (str.length < num) {
str = "0" + str;
}
return str;
};
console.log(numPad(maxValue));
console.log(numPad(minValue));
});
원래는 순열로 풀려고 했지만, 실패했다.
너무 많은 경우의 수를 고려해야 하기 때문에 시간 초과는 필연적이다. ( 메모리 문제는 제너레이터로 해결한다 쳐도. )
그래서 백트래킹으로 해결했다.
반응형
'프로그래밍 > 알고리즘 풀이' 카테고리의 다른 글
[node.js] 스도쿠 ( 백준 2580번 ) (0) | 2021.08.04 |
---|---|
[node.js] N-Queen ( 백준 9663번 ) (0) | 2021.08.04 |
[node.js] 부분 수열의 합( 백준 1182번 ) (0) | 2021.08.01 |
[node.js] 스타트와 링크 ( 백준 14889번 ) (0) | 2021.08.01 |
[node.js] 연산자 끼워넣기 ( 백준 14888번 ) (0) | 2021.07.31 |