Lennon FE

[백준 7568번] 덩치 - 자바스크립트(nodejs) 본문

🔥 Algorithm/Baekjoon

[백준 7568번] 덩치 - 자바스크립트(nodejs)

Lennon 2022. 1. 18. 19:25
728x90
반응형

https://www.acmicpc.net/problem/7568

const fs = require('fs');
let input = fs
  .readFileSync('dev/stdin')
  .toString()
  .trim()
  .split('\n')
  .map((v) => v.split(' ').map((v) => +v));
input.shift();

let str = '';
input.filter((v, idx) => {
  let count = 0;
  for (let i = 0; i < input.length; i++) {
    if (v[0] < input[i][0] && v[1] < input[i][1]) {
      count++;
    }
  }
  str += `${count + 1} `;
});

console.log(str.trim());

완전탐색 문제이다.

본인보다 명확하게 덩치가 큰 사람의 수를 세고 +1 씩 해주고 리턴해주면 끝!



728x90
반응형
Comments