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
- c3 step graph
- telegraf
- semanage
- c3 축 없애기
- CentOS7
- python os
- InfluxDB
- 1697
- gcc regex
- 정규식 활용
- centos pyhon 설치
- regex_search
- 정규식 컴파일
- grafana dashboard
- c3 축 가리기
- 정규식 문자열 출력
- snmp
- 백준
- snmp test
- python subprocess
- influxdb 설치
- c3 초
- c++ 정규식
- linux시간으로 변경
- python popen
- c3 second
- gcc 업데이트
- subporcess path
- selinux port 등록
- g++ 업데이트
Archives
- Today
- Total
리셋 되지 말자
재귀로 짠 수열(?) 본문
#include<bits/stdc++.h>
using namespace std;
int N, M;
int arr[10];
void dfs(int depth){
if(depth == M){
for(int i = 0; i<M; i++){
cout<< arr[i] << ' ';
}
cout<< '\n';
return;
}
//루프는 0~2까지
for(int i=0; i<N; i++){
arr[depth]=i+1;
dfs(depth+1);
}
}
int main(void){
cin>>N>>M;
dfs(0);
}
백트레킹을 이해하기 위해 재귀로 수열을 짜보았다.
'알고리즘' 카테고리의 다른 글
[백준] N과M(1) (0) | 2020.05.17 |
---|---|
[백준]N와 M(1) (0) | 2020.04.25 |
[백준 9466] 텀 프로젝트 (0) | 2020.03.12 |
[백준 1697] 숨바꼭질 (0) | 2020.03.11 |
[백준 7576]토마토 (0) | 2020.03.11 |
Comments