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
- 토글 그룹
- 그리디알고리즘
- 18249
- 회의실 배정
- 수 만들기
- 영상 프레임 추출
- 3273
- AI Hub
- 3344
- c#
- 백준
- 자료구조 목차
- 걷는건귀찮아
- 알고리즘
- 문자열 압축
- 탄막 이동
- 원형
- 단어 수학
- 탄막
- 알고리즘 목차
- 마우스 따라다니기
- 유니티
- SWEA
- 2020 KAKAO BLIND RECRUITMENT
- mysqld.sock
- 윈도우
- 탄막 스킬 범위
- MySQL
- 강의실2
- 우분투
Archives
- Today
- Total
와이유스토리
[DFS 순열] 백준 15649 N과 M(1) / 15654 N과 M(5) C++ 본문
https://www.acmicpc.net/problem/15649
#include <iostream>
#define MAX 11
using namespace std;
int n, m;
int answer[MAX];
bool isused[MAX];
void sol(int level) {
if (level == m) {
for (int i = 0; i < m; i++) {
cout << answer[i] << " ";
}
cout << "\n";
return;
}
for (int i = 1; i <= n; i++)
{
if (isused[i]) continue;
isused[i] = true;
answer[level] = i;
sol(level + 1);
isused[i] = false; // 초기화
}
}
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0), cout.tie(0);
cin >> n >> m;
sol(0);
}
https://www.acmicpc.net/problem/15654
#include<iostream>
#define MAX 11
using namespace std;
int n, m, a;
bool isused[MAX];
int answer[MAX];
vector<int> arr;
void sol(int level)
{
if (level == m)
{
for (int i = 0; i < m; i++)
{
cout << answer[i] << " ";
}
cout << "\n";
return;
}
for (int i = 0; i < n; i++)
{
if (isused[i]) continue;
answer[level] = arr[i];
isused[i] = true;
sol(level + 1);
isused[i] = false;
}
}
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0), cout.tie(0);
cin >> n >> m;
for (int i = 0; i < n; i++)
{
cin >> a;
arr.push_back(a);
}
sort(arr.begin(), arr.end());
sol(0);
}
'코딩테스트 > 그래프|트리' 카테고리의 다른 글
[DFS 중복순열] 백준 15651 N과 M(3) / 15656 N과 M(7) C++ (0) | 2022.01.22 |
---|---|
[DFS 조합] 백준 15650 N과 M(2) / 15655 N과 M(6) C++ (0) | 2022.01.22 |
[DFS 백트래킹] 백준 15684 사다리 조작 C++ (0) | 2022.01.22 |
[DFS 단순 반복, BFS 반복, 크루스칼] 백준 17472 다리 만들기2 C++ (0) | 2022.01.22 |
[DFS 백트래킹] 백준 17136 색종이 붙이기 C++ (0) | 2022.01.22 |
Comments