본문 바로가기

Algorithm/Baekjoon

(JS) [Baekjoon 20920 - 영단어 암기는 괴로워] - 2023. 5.26.(금)

문제  

화은이는 이번 영어 시험에서 틀린 문제를 바탕으로 영어 단어 암기를 하려고 한다. 그 과정에서 효율적으로 영어 단어를 외우기 위해 영어 단어장을 만들려 하고 있다. 화은이가 만들고자 하는 단어장의 단어 순서는 다음과 같은 우선순위를 차례로 적용하여 만들어진다.

  1. 자주 나오는 단어일수록 앞에 배치한다.
  2. 해당 단어의 길이가 길수록 앞에 배치한다.
  3. 알파벳 사전 순으로 앞에 있는 단어일수록 앞에 배치한다

M보다 짧은 길이의 단어의 경우 읽는 것만으로도 외울 수 있기 때문에 길이가 M이상인 단어들만 외운다고 한다. 화은이가 괴로운 영단어 암기를 효율적으로 할 수 있도록 단어장을 만들어 주자.

입력

첫째 줄에는 영어 지문에 나오는 단어의 개수 N과 외울 단어의 길이 기준이 되는 M이 공백으로 구분되어 주어진다. (1 ≤ N ≤100,000       1≤ M ≤ 10) 

둘째 줄부터 N+1번째 줄까지 외울 단어를 입력받는다. 이때의 입력은 알파벳 소문자로만 주어지며 단어의 길이는 10을 넘지 않는다.

단어장에 단어가 반드시 1개 이상 존재하는 입력만 주어진다.

출력

화은이의 단어장에 들어 있는 단어를 단어장의 앞에 위치한 단어부터 한 줄에 한 단어씩 순서대로 출력한다.


Solution.js

class MaxHeap {
  constructor() {
    this.heap = [null];
  }
}

MaxHeap.prototype.push = function (value) {
  this.heap.push(value);
  let currentIndex = this.heap.length - 1;
  let parentIndex = Math.floor(currentIndex / 2);

  while (parentIndex !== 0 && this.compare(parentIndex, currentIndex)) {
    const temp = this.heap[parentIndex];
    this.heap[parentIndex] = value;
    this.heap[currentIndex] = temp;

    currentIndex = parentIndex;
    parentIndex = Math.floor(currentIndex / 2);
  }
};

MaxHeap.prototype.compare = function (parentIndex, currentIndex) {
  if (this.heap[parentIndex][1] < this.heap[currentIndex][1]) return true;
  if (this.heap[parentIndex][1] > this.heap[currentIndex][1]) return false;
  
  if (this.heap[parentIndex][0].length < this.heap[currentIndex][0].length) return true;
  if (this.heap[parentIndex][0].length > this.heap[currentIndex][0].length) return false;
  
  if (this.heap[parentIndex][0] > this.heap[currentIndex][0]) return true;
  
  return false;
};

MaxHeap.prototype.pop = function () {
  if (this.heap.length === 2) return this.heap.pop();
  if (this.heap.length === 1) return null;

  const returnValue = this.heap[1];
  this.heap[1] = this.heap.pop();

  let currentIndex = 1;
  let leftIndex = 2;
  let rightIndex = 3;

  while (true) {
    let swapIndex = null;
    if (
      this.heap[leftIndex] !== undefined &&
      this.compare(currentIndex, leftIndex)
    ) {
      swapIndex = leftIndex;
    }

    if (
      this.heap[rightIndex] !== undefined &&
      this.compare(currentIndex, rightIndex) &&
      (swapIndex === null || this.compare(swapIndex, rightIndex))
    ) {
      swapIndex = rightIndex;
    }

    if (swapIndex === null) break;

    const temp = this.heap[currentIndex];
    this.heap[currentIndex] = this.heap[swapIndex];
    this.heap[swapIndex] = temp;
    currentIndex = swapIndex;
    leftIndex = currentIndex * 2;
    rightIndex = currentIndex * 2 + 1;
  }
  return returnValue;
};


MaxHeap.prototype.isEmpty = function () {
  return this.heap.length === 1;
};

const [NM, ...input] = require('fs').readFileSync('/dev/stdin').toString().trim().split("\n");

const [N, M] = NM.split(" ").map(v => parseInt(v));

const note = {};

for (const v of input) {
  note[v] = (note[v] || 0) + 1;
}
const maxheap = new MaxHeap(); 

for (const key in note) {
  if (key.length < M) continue;
  maxheap.push([key, note[key]]);
}

const result = [];
while(!maxheap.isEmpty()) {
  result.push(maxheap.pop());
}

console.log(result.map(v => v[0]).join("\n"));

 

출처 : Baekjoon online judge, https://www.acmicpc.net/problem/20920