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
- python popen
- c3 축 없애기
- python os
- regex_search
- python subprocess
- telegraf
- CentOS7
- 정규식 컴파일
- 정규식 문자열 출력
- 백준
- c3 축 가리기
- subporcess path
- gcc regex
- snmp test
- grafana dashboard
- gcc 업데이트
- InfluxDB
- c3 step graph
- semanage
- influxdb 설치
- 1697
- selinux port 등록
- g++ 업데이트
- c3 second
- centos pyhon 설치
- linux시간으로 변경
- 정규식 활용
- c3 초
- c++ 정규식
- snmp
Archives
- Today
- Total
리셋 되지 말자
[백준]N와 M(1) 본문
https://www.acmicpc.net/problem/15649
#include<bits/stdc++.h>
using namespace std;
int N, M;
int arr[10];
int isused[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++){
if(isused[i]==0){
arr[depth]=i+1;
isused[i]=1;
dfs(depth+1);
isused[i]=0;
}
}
}
int main(void){
cin>>N>>M;
dfs(0);
}
처음 푼 백트레킹 문제인데, isused[i]=0의 위치를 어디로 해줄지 몰라서 해맴. 재귀는 진짜 이해하기가 넘 힘들다...
'알고리즘' 카테고리의 다른 글
[백준]N과M(4) (0) | 2020.05.18 |
---|---|
[백준] N과M(1) (0) | 2020.05.17 |
재귀로 짠 수열(?) (0) | 2020.04.25 |
[백준 9466] 텀 프로젝트 (0) | 2020.03.12 |
[백준 1697] 숨바꼭질 (0) | 2020.03.11 |
Comments