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 |
Tags
- 엘라스틱서치
- 이젠 골드구현도 어렵네..
- 자바PS
- 백준코딩테스트
- 재귀함수
- 세그먼트트리
- 취득후기
- 우선순위큐
- deque
- 01BFS
- 게더타운시작
- 완전탐색
- DFS
- 다익스트라
- 알고리즘
- 다이나믹프로그래밍
- 네트워크플로우
- GatherTown
- spring
- java
- 백준
- 시뮬레이션
- COSPRO
- COSPROJAVA1급
- YBMCOS
- PS
- 구현
- dp
- QUICKSTARTGUIDE
- BFS
Archives
- Today
- Total
공부공간
BOJ - 1939 ) 중량제한 본문
0부터 ~ 최대 Capacity 까지의 수를 이분탐색으로 구하고, 구한 숫자로 유량을 보낼 수 있는지?
확인하는 이분탐색 + bfs 문제
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.ArrayDeque;
import java.util.ArrayList;
import java.util.StringTokenizer;
public class Main {
public static ArrayList<int[]> node[] ;
public static int flow,start,end,step=1;
public static int visit[];
public static void main(String[] args) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
int n = Integer.parseInt(st.nextToken());
int m = Integer.parseInt(st.nextToken());
node =new ArrayList[n];
visit = new int[n];
for(int i =0;i<n;i++)node[i] = new ArrayList<>();
int max = -1;
for(int i =0;i<m;i++) {
st = new StringTokenizer(br.readLine());
int s = Integer.parseInt(st.nextToken())-1;
int e = Integer.parseInt(st.nextToken())-1;
int c = Integer.parseInt(st.nextToken());
max = max > c ? max : c;
node[s].add(new int[] {e,c});
node[e].add(new int[] {s,c});
}
st = new StringTokenizer(br.readLine());
start = Integer.parseInt(st.nextToken())-1;
end = Integer.parseInt(st.nextToken())-1;
int min = 0;
int answer = 0;
while(min <= max) {
flow = ((min+max)>>1);
if(bfs()) {
answer = flow;
min = flow+1;
} else {
max = flow-1;
}
step++;
}System.out.println(answer);
}
private static boolean bfs() {
// flow로 bfs가 가능한지?
ArrayDeque<int[]> dq = new ArrayDeque<>();
dq.add(new int[] {start,0});
visit[start] = step;
while(!dq.isEmpty()) {
int [] now = dq.poll();
int ss = now[0];
if(ss==end) {
return true;
} else {
for(int i =0;i< node[ss].size();i++) {
int next = node[ss].get(i)[0];
int cc = node[ss].get(i)[1];
if(flow<= cc && visit[next]< step){
visit[next]= step;
dq.add(new int[] {next,cc});
}
}
}
}
return false;
}
}
'알고리즘 > 완전탐색(BFS,DFS)' 카테고리의 다른 글
BOJ - 15812 ) 침략자 진아 (0) | 2021.05.13 |
---|---|
BOJ - 9205 ) 맥주 마시면서 걸어가기 (0) | 2020.11.26 |
BOJ - 14889 ) 스타트와 링크 (0) | 2020.09.08 |
BOJ - 2665 ) 미로만들기 (0) | 2020.08.31 |
BOJ - 19238 ) 스타트 택시 (0) | 2020.08.02 |
Comments