반응형
250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 코딩교육
- SSAFYcial
- SSAFY
- 백준7576 bfs
- React
- Learning
- SSAFY 8기
- 삼성 청년 SW 아카데미
- 유니온 파인드
- 알고리즘
- 싸피 7기 입학식
- SWEA
- SSAFY 입학식
- pytorch
- 프로그래머스 고득점 kit
- dfs
- 삼성청년sw아카데미
- 전이학습
- DP
- git
- bfs
- ssafy 7기 교수님
- 이코테
- ssafy 7기
- ssafy 7기 합격
- 코딩 교육
- DenseNet
- 백준
- 프로그래머스
- 웹 표준 사이트 만들기
Archives
- Today
- Total
개미의 개열시미 프로그래밍
[프로그래머스] LEVEL2 전력망을 둘로 나누기 - 자바 본문
728x90
반응형
https://programmers.co.kr/learn/courses/30/lessons/86971
[풀이 코드]
import java.util.*;
class Solution {
static List<List<Integer>> list;
public int solution(int n, int[][] wires) {
int answer = -1;
list = new ArrayList<>();
for(int i=0; i<n+1; i++){
list.add(new ArrayList<>());
}
for(int i=0; i<wires.length; i++){
list.get(wires[i][0]).add(wires[i][1]);
list.get(wires[i][1]).add(wires[i][0]);
}
int min = Integer.MAX_VALUE; // 최댓값 설정
for(int i=1; i<=n; i++){
for(int num : list.get(i)){
if(i < num) {
int tCnt = bfs(i, num, n); //BFS한번만!!
min = Math.min(min, Math.abs(tCnt - (n-tCnt)));
}
}
}
return min;
}
static int bfs(int start, int end, int n){
Queue<Integer> q = new LinkedList<>();
boolean[] visited = new boolean[n+1];
int cnt = 1;
q.offer(start);
visited[start] = true;
while(!q.isEmpty()){
int v = q.poll();
for(int i : list.get(v)){
if(!visited[i] && i != end){
q.offer(i);
visited[i] = true;
cnt++;
}
}
}
return cnt;
}
}
- 만약에 각 노드마다 가중치가 있다고 가정한다고 해도 BFS로 풀 수 있을지가 궁금하다.
- 이때 간선이 중복되어 탐색되는 부분을 방지하기 위해 if(i < num) 조건문을 넣어줬다. 이 부분은 직접 간선 리스트를 그려보면 이해가 빨리 된다.
- for문을 n번만큼 돌면서 나눠진 두 구역 중 한 구역만 bfs탐색을 실행한다. 나머지 한구역은 총합에서 bfs탐색 후 나온 값을 빼주면 된다.
728x90
반응형
'알고리즘 > DFS, BFS, 백트래킹' 카테고리의 다른 글
[알고리즘]백준2234 성곽 - 자바 (0) | 2022.03.10 |
---|---|
[알고리즘] 백준17144 미세먼지 안녕! - 자바 (0) | 2022.02.25 |
[알고리즘] 백준16954 움직이는 미로 탈출 - 자바 (0) | 2022.02.25 |
[알고리즘] 정올 1681 해밀턴 순환회로 - 자바 (0) | 2022.02.24 |
[알고리즘] 백준15686 치킨배달 - 자바 (0) | 2022.02.23 |
Comments