[백준] 2631 줄세우기 - javascript
📌 문제
https://www.acmicpc.net/problem/2631
📌 풀이
const fs = require('fs');
const filePath = process.platform === 'linux' ? '/dev/stdin' : 'input.txt';
let input = fs.readFileSync(filePath).toString().trim().split('\n');
const N = +input.shift();
const arr = input.map((i) => +i);
const longest = new Array(N).fill(1);
for (let i = 1; i < N; i++) {
let cnt = 0;
for (let j = 0; j < i; j++) {
if (arr[j] < arr[i]) cnt = Math.max(cnt, longest[j]);
}
longest[i] = cnt + 1;
}
console.log(N - Math.max(...longest));
✔ 알고리즘 : DP
✔ 사람을 이동시켜서 순차적으로 배치시켜야 하는 문제이다
✔ 현재 순차적으로 배치되어있는 최대 부분수열의 길이를 구하고 전체 사람 수에서 빼면 최소로 움직여서 배치할 수 있는 경우가 된다
✔ 이중 for문으로 최대 증가 부분수열의 길이를 구하여 빼면 된다.
✔ 난이도 : 백준 기준 골드 5
Author And Source
이 문제에 관하여([백준] 2631 줄세우기 - javascript), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@ywc8851/백준-2631-줄세우기-javascript저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)