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 |
Tags
- ๋ฐฑ์ค
- html #css์ ๋ฌธ #visual studio
- HTML์ ๋ฌธ
- ๋ฏธ๊ตญ์ฌํ #๋ฏธ๊ตญ์ ๊ตญ์ฌํ
- GitHub
- C++
- ๊ฐ๋ฐ์์ค๋น #์ปดํจํฐ๊ณตํ๊ณผ
- 2579
- ๋์ ํ ๋น๋ฒ
Archives
- Today
- Total
๐๊ฐ๋ฐ๊ณผ ์ผ์ (โง∇โฆ)๏พ
[C++] ์์ด ์กฐํฉ ์๊ณ ๋ฆฌ์ฆ ๊ตฌํํ๊ธฐ ๋ณธ๋ฌธ
ํญ์ ๊ถ๊ธํ๋ฉด์ ์ ๋ฆฌํ์ง ๋ชปํ ๊ฒ ๊ฐ์์, ์ ๋ฆฌํ๊ณ ๋ค์ด๊ฐ๊ธฐ.
C++์์๋ n๊ฐ ์ค k๊ฐ๋ฅผ ๋ฝ๋ ๊ฒฝ์ฐ์ ์๋ฅผ ๊ตฌํ๋ ๋ผ์ด๋ธ๋ฌ๋ฆฌ next_permutation ์ด ์๋ค.
์ด๋ฅผ ํ์ฉํด์ ์์ด ์กฐํฉ ๋ฌธ์ ๋ฅผ ํด๊ฒฐํ ์ ์๋ค.
๋จ, ์ค์ํ ๊ฒ์ ์์ด ๋ฐ ์กฐํฉ์ ๊ตฌํ๊ธฐ ์ ์ sort ํจ์๋ก ๋ฐฐ์ด์ ์ค๋ฆ์ฐจ์์ผ๋ก ์ ๋ ฌ์ด ํ์ํ๋ค.
1) ์์ด
N๊ฐ๋ฅผ ๋์ดํ ์ ์๋ ๊ฒฝ์ฐ์ ์๋ฅผ ๊ตฌํ๋ค.
#include <algorithm>
sort(v.begin(),v.end());
do {
for(int i = 0; i < v.size(); i++){
cout << v[i] << " ";
}
cout << "\n";
}while(next_permutation(v.begin(), v.end()));
next_permutation์ algorithm ํค๋์์ ํด๋น ๊ฐ์ ํ์ฉํ๋ค.
2) ์กฐํฉ
N๊ฐ ์ค k๊ฐ๋ฅผ ๋ฝ์ ์ ์๋ ๊ฒฝ์ฐ์ ์๋ฅผ ์ถ๋ ฅํ๋ค.
// 0, 1์ ๋ฃ์ด ์์ ์กฐํฉ ์์ฑ
vector<int> tempVector;
// ์ ํ ๊ฐ์
int n = 3;
// ์์ ๋ฒกํฐ๋ฅผ ์ถ๊ฐ
// ๊ณ ๋ฅผ ๊ฒฝ์ฐ n๊ฐ์ 1์ ์ถ๊ฐ
for (int i = 0; i < n; i++)
tempVector.push_back(1);
//๋๋จธ์ง๋ ๋ค 0์ผ๋ก ์ด๊ธฐํ
for (int i = 0; i < dungeons.size() - n; i++)
tempVector.push_back(0);
//ํด๋น ๊ฐ์ sortํ๊ธฐ
sort(tempVector.begin(), tempVector.end());
do{
for (int i = 0; i < tempVector.size(); i++)
{
if (tempVector[i] == 1)
{ // ์ค์ ๊ฐ ์ถ๋ ฅ
cout << dungeons[i][0] << " " << dungeons[i][1] << "\n";
}
}
cout << endl;
}while(next_permutation(tempVector.begin(),tempVector.end()));