티스토리 뷰
출처: https://www.acmicpc.net/problem/15652
const fs = require('fs');
const input = fs.readFileSync("/dev/stdin").toString().trim().split(" ").map(v=>+v);
const N = input[0];
const M = input[1];
let result = '';
function solve(cnt,pos,val){
if(cnt==M){
result+=`${val}\n`
return false;
}else{
for(let i = 1; i<=N; i++){
if(pos>i)continue
solve(cnt+1,i,val+i+' ')
}
}
}
solve(0,0,'');
console.log(result.trim())
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js) 백준 2580번 : 스도쿠 (0) | 2021.09.09 |
---|---|
Node.js) 백준 9663번 : N-Queen ★ (0) | 2021.09.08 |
Node.js) 백준 15651번 : N과 M (3) (0) | 2021.09.08 |
Node.js) 백준 15650번 : N과 M (2) (0) | 2021.09.08 |
Node.js) 백준 15649번 : N과 M (1) (0) | 2021.09.08 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 개발자면접
- 최소공통조상
- MOD
- MySQL
- create databases;
- 롱베케이션
- 로드나인
- 면접비
- 면접질문
- 동적프로그래밍
- create db
- 다이나믹프로그래밍
- DB 생성
- 투포인터
- 서버점검
- BFS
- 그래프
- 서버개발
- 은둔청년체험
- 투포인터 연습
- 다이나밍프로그래밍
- node.js
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함