입력으로 종이의 가로 세로 길이, 그리고 잘라야할 점선들이 주어질 때, 가장 큰 종이 조각의 넓이가 몇 ㎠인지를 구하는 프로그램을 작성하시오.
ArrayList 를 활용해 문제를 풀었다.
비슷한 문제를 더 풀어볼 계획이다.
import java.util.ArrayList;
import java.util.Collections;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int width = sc.nextInt();
int height = sc.nextInt();
int n = sc.nextInt();
ArrayList<Integer> horizontalCuts = new ArrayList<>();
ArrayList<Integer> verticalCuts = new ArrayList<>();
for (int i = 0; i < n; i++) {
int direction = sc.nextInt();
int cut = sc.nextInt();
if (direction == 0) {
horizontalCuts.add(cut);
} else {
verticalCuts.add(cut);
}
}
horizontalCuts.add(0);
horizontalCuts.add(height);
verticalCuts.add(0);
verticalCuts.add(width);
Collections.sort(horizontalCuts);
Collections.sort(verticalCuts);
int maxH = 0, maxV = 0;
for (int i = 1; i < horizontalCuts.size(); i++) {
maxH = Math.max(maxH, horizontalCuts.get(i) - horizontalCuts.get(i - 1));
}
for (int i = 1; i < verticalCuts.size(); i++) {
maxV = Math.max(maxV, verticalCuts.get(i) - verticalCuts.get(i - 1));
}
System.out.println(maxH * maxV);
}
}
Java소개 자바에서 Set은 중복을 허용하지 않는 데이터 집합을 의미합니다. List와 달리 동일한 요소를 여러 번…
해시(Hash)란 무엇인가? 해시(Hash)는 자바 프로그래밍에서 빠르고 효율적인 데이터 저장 및 검색을 위한 핵심적인 개념입니다. 이…
LinkedList란 무엇인가? LinkedList는 자바에서 유용하게 사용되는 자료구조 중 하나로, 연결 리스트 방식을 이용하여 데이터를 관리하는…
ArrayList란 무엇인가? ArrayList는 자바에서 가장 널리 사용되는 컬렉션 중 하나로, 가변 크기의 배열을 구현한 클래스입니다.…
제네릭(Generic)이란? 자바 제네릭은 코드의 재사용성을 높이고 타입 안전성을 보장하는 중요한 개념입니다. 이 블로그 글에서는 자바…