티스토리 뷰
택배 문제는 도착지점을 기준으로 정렬하여
싣고 갈 수 있는 택배를 용량으로 확인하여 최대 값을 확인할 수 있다.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package sdk.algo.greedy; | |
import java.util.Arrays; | |
import java.util.Comparator; | |
import java.util.Scanner; | |
/** | |
* 그리디, 2641 택배 | |
* | |
* @author whitebeard | |
* | |
*/ | |
public class Problem2641 { | |
public static void main(String[] args) { | |
Scanner in = new Scanner(System.in); | |
int n = in.nextInt(); | |
int c = in.nextInt(); | |
int m = in.nextInt(); | |
int[][] array = new int[m][3]; | |
for (int i = 0; i < m; i++) { | |
array[i][0] = in.nextInt(); | |
array[i][1] = in.nextInt(); | |
array[i][2] = in.nextInt(); | |
} | |
in.close(); | |
// int n = 4; | |
// int c = 40; | |
// int m = 6; | |
// int[][] array = { { 3, 4, 20 }, | |
// { 1, 2, 10 }, | |
// { 1, 3, 20 }, | |
// { 1, 4, 30 }, | |
// { 2, 3, 10 }, | |
// { 2, 4, 20 } }; | |
// int n = 6; | |
// int c = 60; | |
// int m = 5; | |
// int[][] array = { { 1, 2, 30 }, | |
// { 2, 5, 70 }, | |
// { 5, 6, 60 }, | |
// { 3, 4, 40 }, | |
// { 1, 6, 40 } }; | |
// 배열을 도착지점 순서로 정렬하여 | |
// 도착지점에 따라 용량을 제거해 준다. | |
Arrays.sort(array, new Comparator<int[]>() { | |
@Override | |
public int compare(int[] a, int[] b) { | |
return (a[1] <= b[1]) ? -1 : 1; | |
} | |
}); | |
// for(int[] a : array) | |
// System.out.printf("%d %d %2d\n", a[0], a[1], a[2]); | |
// 거리별 용량을 담기 위한 배열 | |
int[] capacity = new int[n + 1]; | |
Arrays.fill(capacity, c); | |
int sum = 0; | |
for (int i = 0; i < array.length; i++) { | |
int dept = array[i][0]; | |
int arri = array[i][1]; | |
int box = array[i][2]; | |
sum += getBox(capacity, dept + 1, arri, box); | |
} | |
System.out.println(sum); | |
} | |
public static int getBox(int[] capacity, int start, int end, int box) { | |
int min = Integer.MAX_VALUE; | |
for (int i = start; i <= end; i++) { | |
if (capacity[i] < min) { | |
min = capacity[i]; | |
} | |
} | |
int result = 0; | |
if (min > box) { | |
result = box; | |
} else { | |
result = min; | |
} | |
for (int i = start; i <= end; i++) { | |
capacity[i] -= result; | |
} | |
return result; | |
} | |
} |
반응형
'알고리즘 > 정올' 카테고리의 다른 글
[정올] [백트래킹] 1457 영역구하기 (0) | 2016.09.09 |
---|---|
[정올] [백트래킹] 1824 스도쿠 (0) | 2016.09.09 |
[정올] [그리디] 1828 냉장고 (0) | 2016.09.09 |
[정올] [그리디] 1060 최소비용 신장트리 (0) | 2016.09.02 |
[정올] [그리디] 1183 동전자판기 (0) | 2016.08.25 |
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- oozie
- SPARK
- mysql
- S3
- airflow
- 하이브
- Linux
- Hadoop
- 파이썬
- 백준
- 알고리즘
- java
- AWS
- ubuntu
- Python
- 하둡
- bash
- SQL
- 다이나믹
- 오류
- emr
- Tez
- HDFS
- build
- error
- yarn
- 정올
- hbase
- nodejs
- HIVE
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함