-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Silver III] Title: N과 M (6), Time: 0 ms, Memory: 2024 KB -BaekjoonHub
- Loading branch information
Showing
2 changed files
with
80 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
#include <iostream> | ||
#include <algorithm> | ||
#include <vector> | ||
using namespace std; | ||
|
||
int N, M, x; | ||
vector<int> seq, answer; | ||
bool check[8]; | ||
|
||
void dfs() { | ||
if (answer.size() == M) { | ||
for (int num : answer) cout << num << " "; | ||
cout << '\n'; | ||
return; | ||
} | ||
|
||
for(int i=0; i < N; i++) { | ||
if (!check[i] && (answer.empty() || answer.back() < seq[i])) { | ||
check[i] = true; | ||
answer.push_back(seq[i]); | ||
dfs(); | ||
answer.pop_back(); | ||
check[i] = false; | ||
} | ||
} | ||
return; | ||
} | ||
|
||
int main() { | ||
ios::sync_with_stdio(false); | ||
cin.tie(0); | ||
|
||
cin >> N >> M; | ||
for(int i=0; i < N; i++) { | ||
cin >> x; | ||
seq.push_back(x); | ||
} | ||
sort(seq.begin(), seq.end()); | ||
|
||
dfs(); | ||
|
||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# [Silver III] N과 M (6) - 15655 | ||
|
||
[문제 링크](https://www.acmicpc.net/problem/15655) | ||
|
||
### 성능 요약 | ||
|
||
메모리: 2024 KB, 시간: 0 ms | ||
|
||
### 분류 | ||
|
||
백트래킹 | ||
|
||
### 제출 일자 | ||
|
||
2024년 8월 25일 05:24:46 | ||
|
||
### 문제 설명 | ||
|
||
<p>N개의 자연수와 자연수 M이 주어졌을 때, 아래 조건을 만족하는 길이가 M인 수열을 모두 구하는 프로그램을 작성하시오. N개의 자연수는 모두 다른 수이다.</p> | ||
|
||
<ul> | ||
<li>N개의 자연수 중에서 M개를 고른 수열</li> | ||
<li>고른 수열은 오름차순이어야 한다.</li> | ||
</ul> | ||
|
||
### 입력 | ||
|
||
<p>첫째 줄에 N과 M이 주어진다. (1 ≤ M ≤ N ≤ 8)</p> | ||
|
||
<p>둘째 줄에 N개의 수가 주어진다. 입력으로 주어지는 수는 10,000보다 작거나 같은 자연수이다.</p> | ||
|
||
### 출력 | ||
|
||
<p>한 줄에 하나씩 문제의 조건을 만족하는 수열을 출력한다. 중복되는 수열을 여러 번 출력하면 안되며, 각 수열은 공백으로 구분해서 출력해야 한다.</p> | ||
|
||
<p>수열은 사전 순으로 증가하는 순서로 출력해야 한다.</p> | ||
|