티스토리 뷰
https://www.acmicpc.net/problem/6615
// https://www.acmicpc.net/problem/6615
const input = require('fs')
.readFileSync('./dev/stdin')
.toString()
.trim()
.split('\n')
.map((v) => v.split(' ').map(Number));
input.pop();
const answer = input
.map((v) => {
const [A, B] = v;
const listA = getCollatzArray(A);
const listB = getCollatzArray(B);
let C;
for (let i = listA.length - 1; i >= 0; i--) {
const target = listA[i];
if (listB.includes(target)) {
C = target;
}
}
const stepA = listA.indexOf(C);
const stepB = listB.indexOf(C);
return `${A} needs ${stepA} steps, ${B} needs ${stepB} steps, they meet at ${C}`;
})
.join('\n');
console.log(answer);
function getCollatzArray(num) {
const arr = [num];
let temp = num;
while (temp != 1) {
if (temp % 2 == 0) {
temp /= 2;
} else {
temp = 3 * temp + 1;
}
arr.push(temp);
}
return arr;
}
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 24955번: 숫자 이어 붙이기 (0) | 2024.07.10 |
---|---|
Node.js) 백준 3584: 가장 가까운 공통 조상 (0) | 2024.07.09 |
Node.js) 백준 13116번: 30번 (0) | 2024.07.09 |
TS) 백준 7578번: 공장 (0) | 2024.04.16 |
Node.js) 백준 2835번: 인기도 조사 (0) | 2024.03.07 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 그래프
- 다이나믹프로그래밍
- BFS
- 서버개발
- 투포인터 연습
- 은둔청년체험
- MySQL
- 개발자면접
- MOD
- 서버점검
- create databases;
- node.js
- 면접비
- 최소공통조상
- 롱베케이션
- 로드나인
- 동적프로그래밍
- 투포인터
- 면접질문
- 다이나밍프로그래밍
- create db
- 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 |
글 보관함