티스토리 뷰

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

 

9375번: 패션왕 신해빈

첫 번째 테스트 케이스는 headgear에 해당하는 의상이 hat, turban이며 eyewear에 해당하는 의상이 sunglasses이므로   (hat), (turban), (sunglasses), (hat,sunglasses), (turban,sunglasses)로 총 5가지 이다.

www.acmicpc.net

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


let clothes = [];
for (let i = 0; i < arr.length; i++) {
  if (arr[i].includes(' ')) {
    let temp = arr[i].split(' ');
    clothes[clothes.length - 1].push(temp)
  } else {
    clothes.push([])
  }
}

clothes.forEach(arr => {
  let cloth = {};
  arr.forEach(v => {
    if (cloth.hasOwnProperty(v[1])) {
      cloth[v[1]]++;
    } else {
      cloth[v[1]] = 1;
    }
  })
  let clothArr = Object.entries(cloth);
  if (clothArr.length == 1) {
    console.log(clothArr[0][1]);
  }
  else {
    console.log(clothArr.reduce((r, v) => { return r * (v[1] + 1) }, 1) - 1)
  }
})
728x90
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2024/11   »
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
글 보관함