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
- 프로그래머스 문자열 압축
- app router emotion
- 스코프
- suspense 병목현상
- 백준 2108 nodejs
- js
- 사용성 개선
- 자바스크립트 문자열 압축
- 백준 1339번 자바스크립트
- 구름톤 챌린지
- suspense 동작원리
- 구름톤 챌린지 회고
- next13 emotion
- 카카오 코테
- js 문자열 압축
- 자바스크립트 스코프
- 백준 1339번 js
- 구름톤
- js 스코프
- TypeError: createContext only works in Client Components. Add the "use client" directive at the top of the file to use it. Read more:
- emotion RSC
- suspense 비동기
- suspense react-query
- emtion app router
- 프로그래머스 거리두기 확인하기
- 백준 2108 자바스크립트
- js 거리두기 확인하기
- 옵셔널체이닝
- 백준 1339번 nodejs
- 리액트쿼리 suspense
Archives
- Today
- Total
Lennon FE
[백준 1339번] 단어 수학 - 자바스크립트(nodejs) 본문
728x90
반응형
https://www.acmicpc.net/problem/1339
const fs = require('fs');
let input = fs.readFileSync('dev/stdin').toString().trim().split('\n');
input.shift();
const count = {};
const number = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9];
input.forEach((value) => {
[...value].forEach((value2, idx) => {
if (!count[value2]) count[value2] = 0;
count[value2] += 10 ** (value.length - idx - 1);
});
});
console.log(
Object.values(count)
.sort((a, b) => b - a)
.reduce((prev, cur, i) => prev + cur * number.pop(), 0)
);
알고리즘은 간단하다.
ABC, DEF 두 알파벳이 있을 때 해당 알파벳 위치 값에 대해 계속 더해준다. 이러면 영향이 큰 알파벳 별로 정렬할 수 있다.
ex) ABA, DEF 는
A = 101
B = 10
D = 100
E = 10
F = 1 로 정렬할 수 있다. A는 101만큼의 영향이 있고, B는 10만큼, ... F는 1만큼 있다.
이 값을 정렬해 9부터 차례대로 곱하면서 더해주면 된다.
객체에 해당 값이 없으면 0으로 초기화해주고, 값을 위치값에 따라 제곱하여 0에 더해준다.
객체를 사용했으므로 Object.value로 배열로 만든 후 정렬하고 더해주면 끝!
728x90
반응형
Comments