티스토리 뷰
https://www.acmicpc.net/problem/15661
const fs = require('fs');
const input = fs.readFileSync("./dev/stdin").toString().trim().split("\n").map(v=>v.split(' ').map(Number));
const [N] = input[0]
const player = input.splice(1);
let answer = 1000;
for(let i = 0; i<(1<<N); i++){
if(check(i)){
let value = i
const start = [];
const link = [];
// 팀나누고.
for(let j = 0; j<N; j++){
if(value&1){
start.push(j)
}else{
link.push(j)
}
value = value>>1
}
const specStart = getSpec(start)
const specLink = getSpec(link)
const specDiff = Math.abs(specLink-specStart)
if(specDiff<answer) answer = specDiff
}
}
console.log(answer)
function check(n){
const target = Math.floor(N/2)
let cnt = 0;
while(n>0){
if(n&1){
cnt++;
}
n = n>>1;
}
if(cnt<=target)return true;
return false;
}
function getSpec(arr){
let spec = 0;
for(let i = 0; i<arr.length; i++){
const x = arr[i];
for(let j= 0; j <arr.length; j++){
if(i==j) continue;
const y = arr[j]
spec+=player[x][y]
}
}
return spec
}
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js)백준 1248번: 맞춰봐 (0) | 2022.01.02 |
---|---|
Node.js)백준 1759번: 암호 만들기 (0) | 2022.01.02 |
Node.js)백준 14501번: 퇴사 (0) | 2022.01.02 |
Node.js)백준 18290번: NM과 K (1) (0) | 2022.01.02 |
Node.js) 백준 15657번: N과 M (8) (0) | 2022.01.01 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 로드나인
- 서버개발
- 다이나믹프로그래밍
- BFS
- DB 생성
- MOD
- 다이나밍프로그래밍
- 투포인터 연습
- create db
- 그래프
- 면접질문
- 투포인터
- node.js
- create databases;
- 서버점검
- 개발자면접
- 최소공통조상
- 롱베케이션
- 은둔청년체험
- 동적프로그래밍
- 면접비
- MySQL
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함