티스토리 뷰
https://www.acmicpc.net/problem/25214
const [[T], arr] = require('fs')
.readFileSync('./dev/stdin')
.toString()
.trim()
.split('\n')
.map((v) => v.split(' ').map(Number));
const answer = [0];
let min = arr[0];
for (let i = 1; i < T; i++) {
const max = arr[i] - min < answer[i - 1] ? answer[i - 1] : arr[i] - min;
answer.push(max);
min = min > arr[i] ? arr[i] : min;
}
console.log(answer.join(' '));
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 3003번: 킹, 퀸, 룩, 비숍, 나이트, 폰 (0) | 2023.08.25 |
---|---|
Node.js) 백준 9084번: 동전 (0) | 2023.08.24 |
Node.js) 백준 5339번: 콜센터 (0) | 2023.08.23 |
Node.js) 백준 1009번: 분산처리 (0) | 2023.08.21 |
Node.js) 백준 15486번: 퇴사 2 (0) | 2023.08.20 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 면접질문
- node.js
- MySQL
- MOD
- 동적프로그래밍
- create databases;
- 면접비
- 다이나믹프로그래밍
- 다이나밍프로그래밍
- 최소공통조상
- 그래프
- 롱베케이션
- DB 생성
- 개발자면접
- 투포인터
- 은둔청년체험
- 서버점검
- 투포인터 연습
- BFS
- create db
- 로드나인
- 서버개발
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함