티스토리 뷰
https://www.acmicpc.net/problem/2828
const fs = require('fs');
const input = fs.readFileSync("./dev/stdin").toString().trim().split('\n');
const [N, M] = input.shift().split(' ').map(Number);
input.shift();
const apples = input.map(Number)
let left = 1;
let right = M;
let move = 0;
for (let i = 0; i < apples.length; i++) {
const apple = apples[i];
if (apple >= left && apple <= right) continue;
else if (apple < left) {
const dist = left - apple;
left = apple;
right = right - dist;
move += dist;
} else {
apple > right
const dist = apple - right;
right = apple;
left = left + dist;
move += dist;
}
}
console.log(move)
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 4659번: 비밀번호 발음하기 (0) | 2022.03.09 |
---|---|
Node.js) 백준 2910번 : 빈도 정렬 (0) | 2022.03.09 |
Node.js) 백준 3986번 : 좋은 단어 (0) | 2022.03.08 |
Node.js) 백준 1940번 : 주몽 (0) | 2022.03.08 |
Node.js) 백준 1213번 : 팰린드롬 만들기 (0) | 2022.03.07 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- create db
- 서버개발
- 서버점검
- 면접비
- 로드나인
- 그래프
- 최소공통조상
- 투포인터
- 은둔청년체험
- BFS
- 면접질문
- 동적프로그래밍
- MySQL
- 개발자면접
- node.js
- MOD
- 롱베케이션
- 다이나믹프로그래밍
- create databases;
- 투포인터 연습
- 다이나밍프로그래밍
- 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 | 31 |
글 보관함