티스토리 뷰
https://www.acmicpc.net/problem/15656
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 = [];
class Node {
constructor(item) {
this.item = item;
this.next = null;
}
}
class Queue {
constructor() {
this.head = null;
this.tail = null;
this.length = 0;
}
push(item) {
const node = new Node(item)
if (this.head === null) {
this.head = node;
} else {
this.tail.next = node;
}
this.tail = node;
this.length += 1;
}
pop() {
const popItem = this.head.item;
this.head = this.head.next;
this.length -= 1;
return popItem;
}
}
let q = new Queue();
for(let i = 0; i<N; i++){
q.push({
arr:[nums[i]],
cnt:1
});
}
while(q.length>0){
const {arr,cnt} = q.pop();
if(cnt==M){
answer.push(arr.join(' '))
}else{
for(let i = 0; i<N; i++){
q.push({
arr:[...arr,nums[i]],
cnt:cnt+1,
});
}
}
}
console.log(answer.join('\n'))
728x90
'자료구조 알고리즘 > 백준' 카테고리의 다른 글
Node.js)백준 18290번: NM과 K (1) (0) | 2022.01.02 |
---|---|
Node.js) 백준 15657번: N과 M (8) (0) | 2022.01.01 |
Node.js)백준 15655번: N과 M (6) (0) | 2022.01.01 |
Node.js)백준 10830번: 행렬 제곱 (0) | 2021.12.31 |
Node.js)백준 2748번: 피보나치 수 2 (0) | 2021.12.31 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 투포인터
- create db
- 서버개발
- 롱베케이션
- DB 생성
- 다이나믹프로그래밍
- 면접비
- 투포인터 연습
- 그래프
- create databases;
- BFS
- 동적프로그래밍
- MOD
- 최소공통조상
- 다이나밍프로그래밍
- 로드나인
- 면접질문
- MySQL
- 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 |
글 보관함