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
- 우분투
- mysqld.sock
- 윈도우
- 걷는건귀찮아
- 영상 프레임 추출
- 3344
- 18249
- 알고리즘
- 탄막
- 2020 KAKAO BLIND RECRUITMENT
- 회의실 배정
- AI Hub
- MySQL
- 알고리즘 목차
- 백준
- c#
- 토글 그룹
- SWEA
- 강의실2
- 수 만들기
- 단어 수학
- 유니티
- 원형
- 자료구조 목차
- 마우스 따라다니기
- 그리디알고리즘
- 탄막 스킬 범위
- 3273
- 문자열 압축
- 탄막 이동
Archives
- Today
- Total
와이유스토리
[DFS 순열] 프로그래머스 단체사진 찍기 C++ 본문
https://programmers.co.kr/learn/courses/30/lessons/1835
순열을 전부 구한 후, 조건에 따라 체크
#include <string>
#include <vector>
#include <iostream>
#include <cmath>
using namespace std;
int answer = 0;
bool* visited = new bool[8];
bool check(vector<string> data, string st) {
for(string d : data) {
int a = st.find(d[0]);
int b = st.find(d[2]);
char op = d[3];
int num = d[4]-'0';
// false를 먼저 리턴해야 함
if (op == '=')
if (!(abs((int)(a-b)) == num +1)) return false;
else if (op == '>')
if (!(abs((int)(a-b)) > num +1)) return false;
else if (op == '<')
if (!(abs((int)(a-b)) < num +1)) return false;
}
return true;
}
void dfs(int n, vector<string> data, char* li, int idx, string st){
if (idx == 7) { // 8이면 시간 초과
if(check(data, st)) {
cout << st << "\n";
answer++;
}
return;
}
for(int i=0; i<8; i++) {
if(!visited[i]) {
visited[i] = true;
string str = st + li[i]; // 새 변수
dfs(n, data, li, idx+1, str);
visited[i] = false;
}
}
}
// 전역 변수를 정의할 경우 함수 내에 초기화 코드를 꼭 작성해주세요.
int solution(int n, vector<string> data) {
answer = 0;
char li[8] = {'A', 'C', 'F', 'J', 'M', 'N', 'R', 'T'};
for(int i=0; i<8; i++) visited[i] = false;
dfs(n, data, li, 0, "");
return answer;
}
'코딩테스트 > 그래프|트리' 카테고리의 다른 글
[DFS 단순 반복] 프로그래머스 네트워크 C++ (0) | 2022.01.20 |
---|---|
[DFS 단순] 프로그래머스 타겟 넘버 C++ (0) | 2022.01.20 |
[DFS, BFS] 백준 12100 2048(Easy) C++ (0) | 2022.01.06 |
[DFS 조합 반복] 프로그래머스 메뉴 리뉴얼 C++ (0) | 2022.01.01 |
[DFS 조합] 프로그래머스 괄호 변환 C++ (0) | 2021.12.30 |
Comments