티스토리 뷰
https://www.acmicpc.net/problem/15655
const fs = require('fs');
const input = fs.readFileSync("./dev/stdin").toString().trim().split("\n").map(v=>v.split(' ').map(Number));
const [N,M] = input[0]
const nums = input[1].sort((a,b)=>a-b)
const answer = [];
for(let i = 0; i<(1<<N); i++){
if(countBit(i)==M){
let temp = [];
for(let j = 0; j<N; j++){
if((i>>j)&1) temp.push(nums[j])
}
answer.push(temp)
}
}
console.log(answer.sort((a,b)=>{
let n = 0;
while(true){
if(n==M){
return a[n]-b[n]
}
if(a[n]>b[n]){
return 1;
}else if(a[n]<b[n]){
return -1;
}else{
n++;
}
}
}).map(v=>v.join(' ')).join('\n'))
function countBit(n){
let cnt = 0;
while(n>0){
if(n&1) cnt++;
n= n>>1;
}
return cnt
}
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 15657번: N과 M (8) (0) | 2022.01.01 |
---|---|
Node.js) 백준 15656번: N과 M (7) (0) | 2022.01.01 |
Node.js)백준 10830번: 행렬 제곱 (0) | 2021.12.31 |
Node.js)백준 2748번: 피보나치 수 2 (0) | 2021.12.31 |
Node.js)백준 9471번: 피사노 주기 (0) | 2021.12.31 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 다이나밍프로그래밍
- 면접비
- 동적프로그래밍
- MOD
- 로드나인
- 서버점검
- DB 생성
- create databases;
- 개발자면접
- BFS
- 최소공통조상
- create db
- 면접질문
- 서버개발
- node.js
- 다이나믹프로그래밍
- 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 |
글 보관함