티스토리 뷰

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

 

17089번: 세 친구

첫째 줄에 사람의 수 N(3 ≤ N ≤ 4,000), 친구 관계의 수 M(0 ≤ M ≤ 4,000)이 주어진다. 둘째 줄부터 M개의 줄에는 친구 관계를 의미하는 두 정수 A, B가 주어진다. 친구 관계는 A와 B, 그리고 B와 A가 친

www.acmicpc.net

const fs = require('fs');
const input = fs.readFileSync("./dev/stdin").toString().trim().split('\n');
const [N, M] = input[0].split(' ').map(Number)
const f = input.splice(1).map(v => v.split(' ').map(Number))
let answer = Infinity

const friends = Array.from(Array(N + 1), () => [])
f.forEach(v => {
  const [x, y] = v;
  friends[x].push(y)
  friends[y].push(x)
})

  for (let a = 1; a < friends.length; a++) {
    if (friends[a].length > 1) { // 친구가 한명인 놈은 계산할 가치가 없다.
      const A = a;
      const A_friends = friends[a];
      for (let b = 0; b < A_friends.length; b++) {
        const B = A_friends[b];
        const B_friends = friends[B]
        for (let c = 0; c < B_friends.length; c++) {
          if (B_friends[c] == A) continue;
          const C = B_friends[c];
          const C_friends = friends[C]
          if (C_friends.includes(A)) {
            const A_Sum = friends[A].filter(v => v != B && v != C).length;
            const B_Sum = friends[B].filter(v => v != A && v != C).length;
            const C_Sum = friends[C].filter(v => v != B && v != A).length;
            const total_sum = A_Sum + B_Sum + C_Sum;
            if (total_sum < answer) {
              answer = total_sum;
            }
          }

        }
      }
    }
  }
  if(answer==Infinity){
    console.log(-1)
  }else{
    console.log(answer)
  }
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
글 보관함