티스토리 뷰
https://www.acmicpc.net/problem/15650
const fs = require('fs');
const input = fs.readFileSync("/dev/stdin").toString().trim().split(" ").map(v=>+v);
const N = input[0];
const M = input[1];
const arr = [];
for(let i = 1; i<=N; i++){
arr.push(String(i));
}
function countBits(value){
let count = 0;
while(value>0){
if((value&1)==1) count++;
value = value>>1;
}
return count;
}
function solve(){
let answer = [];
for( let i = 0; i<(1<<N); i++){
if(countBits(i)==M){
let str ='';
for( let j=0; j<N; j++){
if(i&(1<<j)) str+=arr[j]+' ';
}
answer.push(str);
}
}
answer.sort();
for(let n = 0; n<answer.length; n++){
console.log(answer[n]);
}
}
solve();
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 15652번 : N과 M (4) (0) | 2021.09.08 |
---|---|
Node.js) 백준 15651번 : N과 M (3) (0) | 2021.09.08 |
Node.js) 백준 15649번 : N과 M (1) (0) | 2021.09.08 |
Node.js) 백준 1436번 : 영화감독 슘 (0) | 2021.09.08 |
Node.js) 백준 1018번 : 체스판 다시 칠하기 (0) | 2021.09.08 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- MySQL
- 투포인터 연습
- MOD
- 면접질문
- create db
- 롱베케이션
- 은둔청년체험
- node.js
- 다이나밍프로그래밍
- 개발자면접
- 최소공통조상
- BFS
- 면접비
- DB 생성
- 그래프
- 로드나인
- 동적프로그래밍
- 서버개발
- 다이나믹프로그래밍
- 서버점검
- 투포인터
- create databases;
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함