반응형
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
- 타입스크립트
- TCP
- 자바스크립트
- HTTP
- 문자열
- typescript
- 레벨 1
- Algorithm
- Crawling
- 그래프
- 크롤링
- 프로그래머스
- 쉬운 문제
- 알고리즘
- dfs
- HTTP 완벽 가이드
- 타입 챌린지
- 백준
- ip
- 수학
- Nestjs
- Node.js
- 프로그래머스 레벨 2
- type challenge
- 소켓
- javascript
- BFS
- socket
- 가천대
- dp
Archives
- Today
- Total
kakasoo
[node.js] 가장 긴 증가하는 부분 수열 4 ( 백준 14002번 ) 본문
반응형
const readline = require("readline");
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
});
let count = 0;
rl.on("line", (line) => {
if (!count) {
count = Number(line);
} else {
main(line);
}
});
/**
*
* @param {string} line
*/
const main = (line) => {
const numbers = line.split(" ").map(Number);
const DP = new Array(numbers.length).fill(0);
for (let i = 0; i < numbers.length; i++) {
DP[i] = [1, [numbers[i]]];
for (let j = 0; j < i; j++) {
if (DP[i][0] < DP[j][0] + 1 && numbers[j] < numbers[i]) {
DP[i][1] = [...DP[j][1], numbers[i]];
DP[i][0] = DP[j][0] + 1;
}
}
}
let maxValue = DP[0][0];
let temp = DP[0][1];
for (let i = 1; i < DP.length; i++) {
if (maxValue < DP[i][0]) {
maxValue = DP[i][0];
temp = DP[i][1];
}
}
// console.log(DP);
console.log(temp.length);
// 배열을 출력하고 있었다...
console.log(temp.join(" "));
};
그 합이 되는 과정을 추적하게 하는 문제로, 그냥 배열 하나를 더 가지게 하였다.
DP는 [최댓값, 최댓값이 되기 위한 수를 담은 배열]의 형태를 가진 배열이다.
자바스크립트라서 가능한 코드...!
자바스크립트여서 안 되는 부분은 너무 짜증나고, 되는 부분은 너무 기쁘다.
반응형
'프로그래밍 > 알고리즘 풀이' 카테고리의 다른 글
[node.js] 패션왕 신해빈 ( 백준 9375번 ) (0) | 2021.04.02 |
---|---|
[node.js] 연속합 2 ( 백준 13398번 ) (0) | 2021.04.01 |
[node.js] 타일 채우기 ( 백준 2133번 ) (0) | 2021.03.31 |
[node.js] 연속합 ( 백준 1912번 ) (0) | 2021.03.30 |
[node.js] 가장 큰 증가 부분 수열 ( 백준 11055번 ) (0) | 2021.03.30 |