티스토리 뷰
1. 시간을 갱신해주는 부분이 핵심 포인트이다.
2. A라는 노드로부터 B라는 노드로 이동할 때, B의 작업시간과 A의 작업시간 + B의 작업시간을 비교해야 한다.
3. A+B의 작업시간이 더 클 경우 해당 값으로 갱신해줘야 한다.
[소스 코드]
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.util.ArrayList; import java.util.Arrays; import java.util.Comparator; import java.util.LinkedList; import java.util.List; import java.util.PriorityQueue; import java.util.Queue; import java.util.Stack; import java.util.StringTokenizer; public class Main { static int N; static int[] indegree, times; static List<Integer>[] list; static BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); static StringTokenizer st; public static void main(String[] args) throws IOException { st = new StringTokenizer(br.readLine()); N = Integer.parseInt(st.nextToken()); times = new int[N + 1]; indegree = new int[N + 1]; list = new ArrayList[N + 1]; for (int i = 1; i <= N; i++) list[i] = new ArrayList<>(); for (int i = 1; i <= N; i++) { st = new StringTokenizer(br.readLine()); times[i] = Integer.parseInt(st.nextToken()); int work = Integer.parseInt(st.nextToken()); for (int j = 0; j < work; j++) { int preWork = Integer.parseInt(st.nextToken()); list[preWork].add(i); indegree[i] += 1; } } topologySort(); } public static void topologySort() { int[] result = new int[N + 1]; Queue<Integer> q = new LinkedList<>(); for (int i = 1; i <= N; i++) { if (indegree[i] == 0) { q.offer(i); result[i] = times[i]; } } for (int i = 1; i <= N; i++) { if (q.isEmpty()) { System.out.println("사이클 발생"); return; } int node = q.poll(); for (int j = 0; j < list[node].size(); j++) { int adj = list[node].get(j); if (result[adj] < times[adj] + result[node]) result[adj] = times[adj] + result[node]; indegree[adj] -= 1; if (indegree[adj] == 0) { q.offer(adj); } } } Arrays.sort(result); System.out.println(result[N]); } } | cs |
'알고리즘 문제 > 백준(BOJ)' 카테고리의 다른 글
[백준 1935번] 후위표기식2 :: 늦깎이 IT (0) | 2019.03.21 |
---|---|
[백준 1918번] 후위표기식 :: 늦깎이 IT (0) | 2019.03.21 |
[백준 1766번] 문제집 :: 늦깎이 IT (0) | 2019.03.19 |
[백준 2252번] 줄 세우기 :: 늦깎이 IT (0) | 2019.03.19 |
[백준 14503번] 로봇 청소기 :: 늦깎이 IT (0) | 2019.03.19 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- 알고스팟
- 나무 재테크
- 힙
- 최대힙
- 백준
- DFS
- 중간값
- 자바
- 구현
- 정렬
- 연산자 끼워넣기
- 시뮬레이션
- SWEA
- 영역 구하기
- 배열
- 브루트포스
- 리스트
- 탈주범 검거
- 힙정렬
- 큐
- BFS
- 구슬 탈출2
- 알고리즘
- 탐색
- 우선순위 큐
- 14888
- 트리
- 삼성
- 최소힙
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함