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
- selinux port 등록
- python os
- c++ 정규식
- snmp
- regex_search
- semanage
- centos pyhon 설치
- c3 축 없애기
- snmp test
- 정규식 문자열 출력
- c3 초
- CentOS7
- python popen
- gcc 업데이트
- c3 축 가리기
- influxdb 설치
- linux시간으로 변경
- subporcess path
- python subprocess
- gcc regex
- 1697
- 정규식 활용
- c3 step graph
- grafana dashboard
- InfluxDB
- telegraf
- c3 second
- 정규식 컴파일
- 백준
- g++ 업데이트
Archives
- Today
- Total
리셋 되지 말자
[백준]N과M(3) 본문
#include <bits/stdc++.h>
using namespace std;
int n, m;
void dfs(int arr[], int k) {//현재까지 k개를 선택함
if (k == m) {
for (int i = 0; i < m; i++) {
cout << arr[i] + 1 << ' ';
}
cout << '\n';
return;
}
for (int i = 0; i < n; i++) {
arr[k] = i;
dfs(arr, k + 1);
}
}
int main() {
cin >> n >> m;
int *arr = new int[m]();
int k = 0;
dfs(arr, k);
return 0;
}
'알고리즘' 카테고리의 다른 글
[c++] to_string (int를 string으로 변경하는 함수) (0) | 2020.05.21 |
---|---|
[C++] sort 내림차순 (0) | 2020.05.21 |
[백준]N과M(2) (0) | 2020.05.18 |
[백준]N과M(4) (0) | 2020.05.18 |
[백준] N과M(1) (0) | 2020.05.17 |
Comments