Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- Frustum
- 티스토리챌린지
- 프로그래머스
- NRVO
- winapi
- 팰린드롬 만들기
- RVO
- algorithm
- directx
- 2294
- RootMotion
- UnrealEngine5
- IFileDialog
- 언리얼엔진5
- UE5
- UnrealEngine4
- GeeksForGeeks
- C++
- softeer
- 오블완
- C
- 줄 세우기
- DeferredRendering
- 백준
- baekjoon
- DirectX11
- const
- Programmers
- 1563
- Unreal Engine5
Archives
- Today
- Total
Game Develop
[Algorithm] Baekjoon 15655번 : N과 M (7) 본문
https://www.acmicpc.net/problem/15656
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
int n, m;
vector<int> nums;
vector<int> v;
void DFS(int curIndex)
{
if (v.size() == m)
{
for (int i = 0; i < m; ++i)
{
printf("%d ", v[i]);
}
printf("\n");
return;
}
for (int i = 0; i < n; ++i)
{
v.push_back(nums[i]);
DFS(i);
v.pop_back();
}
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
cin >> n >> m;
for (int i = 0; i < n; ++i)
{
int temp = 0;
cin >> temp;
nums.push_back(temp);
}
sort(nums.begin(), nums.end());
for (int i = 0; i < n; ++i)
{
v.push_back(nums[i]);
DFS(i);
v.pop_back();
}
}
|
cs |
출력 시에 사전순으로 출력해야 한다는것만 인지하자.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm] Baekjoon 15665번 : N과 M (11) (0) | 2023.05.01 |
---|---|
[Algorithm] Baekjoon 15664번 : N과 M (10) (0) | 2023.05.01 |
[Algorithm] Baekjoon 15655번 : N과 M (6) (0) | 2023.05.01 |
[Algorithm] Baekjoon 15651번 : N과 M (3) (0) | 2023.05.01 |
[Algorithm] Baekjoon 1806번 : 부분합 (0) | 2023.04.30 |