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
- 강의실2
- MySQL
- 수 만들기
- 영상 프레임 추출
- 2020 KAKAO BLIND RECRUITMENT
- 탄막 이동
- 그리디알고리즘
- 알고리즘
- 단어 수학
- 알고리즘 목차
- 윈도우
- c#
- 걷는건귀찮아
- 유니티
- 18249
- 토글 그룹
- 3344
- 백준
- 3273
- AI Hub
- 자료구조 목차
- 문자열 압축
- 마우스 따라다니기
- 원형
- 우분투
- mysqld.sock
- 탄막 스킬 범위
- SWEA
- 회의실 배정
- 탄막
Archives
- Today
- Total
와이유스토리
[DFS 순열, 그래프, 비트] 프로그래머스 양과 늑대 C++ 본문
https://school.programmers.co.kr/learn/courses/30/lessons/92343
#include <string>
#include <vector>
using namespace std;
vector<int> v[17];
vector<int> animal(17);
bool visited[17];
int answer;
void dfs(int idx, int lamb, int wolf, int path) {
if (animal[idx] == 0) lamb++;
else wolf++;
if (lamb <= wolf) lamb = 0;
answer = max(answer, lamb);
for(auto vec : v[idx]) path |= (1<<vec); // 갈 수 있는 경로
for(int i=0; i<animal.size(); i++) {
if (visited[i]) continue;
if ((path & (1<<i)) != (1<<i)) continue;
visited[i] = true;
dfs(i, lamb, wolf, path);
visited[i] = false; // DFS 순열
}
}
int solution(vector<int> info, vector<vector<int>> edges) {
for(int i=0; i<info.size(); i++) animal[i] = info[i];
for(auto e : edges) {
v[e[0]].push_back(e[1]);
v[e[1]].push_back(e[0]);
}
visited[0] = true;
dfs(0, 0, 0, 0);
return answer;
}
경로 표시
'코딩테스트 > 그래프|트리' 카테고리의 다른 글
[그래프(다익스트라), DP] 프로그래머스 코딩 테스트 공부 C++ (0) | 2023.02.17 |
---|---|
[그래프(다익스트라)] 프로그래머스 등산코스 정하기 C++ (0) | 2023.02.12 |
[DFS 순열] 프로그래머스 양궁대회 C++ (0) | 2023.01.21 |
[DFS 중복순열] 프로그래머스 이모티콘 할인행사 C++ (0) | 2023.01.19 |
[DFS 순열] 백준 17406 배열 돌리기 4 C++ (0) | 2022.02.05 |
Comments