반응형
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
- Crawling
- javascript
- 레벨 1
- BFS
- dp
- 소켓
- Node.js
- type challenge
- socket
- 수학
- HTTP 완벽 가이드
- Algorithm
- 알고리즘
- dfs
- 타입 챌린지
- 백준
- 쉬운 문제
- 문자열
- Nestjs
- 그래프
- TCP
- typescript
- 프로그래머스 레벨 2
- 가천대
- ip
- 타입스크립트
- 자바스크립트
- HTTP
- 크롤링
- 프로그래머스
Archives
- Today
- Total
kakasoo
[node.js] 연속합 2 ( 백준 13398번 ) 본문
반응형
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);
rl.close();
}
}).on("close", () => process.exit());
/**
*
* @param {string} line
*/
const main = (line) => {
const numbers = line.split(" ").map(Number);
const DP1 = [numbers[0]];
const DP2 = [numbers[numbers.length - 1]];
for (let i = 1; i < numbers.length; i++) {
DP1[i] = Math.max(DP1[i - 1] + numbers[i], numbers[i]);
}
numbers.reverse();
for (let i = 1; i < numbers.length; i++) {
DP2[i] = Math.max(DP2[i - 1] + numbers[i], numbers[i]);
}
DP2.reverse();
let maxValue = Math.max(...DP1);
for (let i = 0; i < numbers.length; i++) {
if (i === 0 || i === numbers.length - 1) {
continue;
}
if (maxValue < DP1[i - 1] + DP2[i + 1]) {
maxValue = DP1[i - 1] + DP2[i + 1];
}
}
console.log(maxValue);
};
반응형
'프로그래밍 > 알고리즘 풀이' 카테고리의 다른 글
[node.js] 제곱수의 합 ( 백준 1699번 ) (0) | 2021.04.03 |
---|---|
[node.js] 패션왕 신해빈 ( 백준 9375번 ) (0) | 2021.04.02 |
[node.js] 가장 긴 증가하는 부분 수열 4 ( 백준 14002번 ) (0) | 2021.04.01 |
[node.js] 타일 채우기 ( 백준 2133번 ) (0) | 2021.03.31 |
[node.js] 연속합 ( 백준 1912번 ) (0) | 2021.03.30 |