반응형
문제링크
https://www.acmicpc.net/problem/27160
풀이방법
- 입력값에서 fruit과 장수를 분리한다.
- Map을 사용하여 fruit별로 총 장수를 업데이트 한다.
- Map을 순회하며 총 count가 5가 나오면 "YES"를 반환하고 순회가 종료되었다면 "NO"를 출력한다.
const readline = require("readline");
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
});
const input = [];
rl.on("line", (line) => {
input.push(line);
});
rl.on("close", () => {
const cardsCount = Number(input[0]);
const currentCards = new Map();
for (let i = 1; i <= cardsCount; i++) {
const [fruit, countString] = input[i].split(" ");
currentCards.set(fruit, (currentCards.get(fruit) || 0) + Number(countString));
}
for (let [_, count] of currentCards) {
if (count === 5) {
console.log("YES");
return;
}
}
console.log("NO");
});
반응형
'개발' 카테고리의 다른 글
[HTTP 완벽 가이드] 16장 국제화 16.1~16.3 (1) | 2025.01.22 |
---|---|
[HTTP 완벽 가이드] 15장 엔터티와 인코딩 15.4~15.10 (0) | 2025.01.22 |
[99클럽] 알고리즘 TIL: 백준 15829번 Hashing - JavaScript (0) | 2025.01.21 |
[99클럽] 알고리즘 TIL: 백준 10798번 세로읽기 - JavaScript (1) | 2025.01.18 |
[React] React 19에 추가된 핵심 기능 (13) | 2025.01.16 |