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 | 31 |
Tags
- java
- lv0
- 삼각형의 완성조건
- 백준 N과 M 자바
- SWEA
- 버퍼
- 클라이언트
- 프로그래머스 풀이
- 프로그래머스 자바
- Programmers
- 백준
- Queue
- lv2
- 프로그래머스 문자열 정렬
- 스프링부트 도커
- 이진수 변환
- 스프링부트 도커 배포
- Lv1
- 문자열
- 오름차순 정렬
- 자바
- index of
- 스택
- 스프링부트 도커로 배포
- StringTokenizer
- 큐
- COS Pro
- 알고리즘
- Stack
- 프로그래머스
Archives
- Today
- Total
mun dev
[SWEA] D3 1206 View 자바(Java) 본문
문제 링크
풀이
문제 조건을 잘 읽고 Math.max 사용해서 풀이하니 금방 풀 수 있었던 문제 같다.
좌우 각 2개 총 4개의 빌딩 중 가장 큰 빌딩 크기를 구한 다음 현재 빌딩에서 빼서 더해준다.
풀이 코드
import java.io.*;
import java.util.*;
public class Test {
public static int n, result=0;
public static int arr[];
public static void main(String[] args) throws NumberFormatException, IOException {
Scanner sc = new Scanner(System.in);
int T=10;
for(int test_case = 1; test_case <= T; test_case++){
n =sc.nextInt();
arr=new int[n];
result=0;
for(int i=0; i<n; i++) {
arr[i]=sc.nextInt();
}
cntBuilding(test_case,arr);
}
}
public static void cntBuilding(int testCase, int arr[]) {
for(int i=2; i<n; i++) {
if(arr[i-1]<arr[i] && arr[i-2]< arr[i] && arr[i+1]<arr[i] && arr[i+2]<arr[i]) {
int max=Math.max(arr[i+2],Math.max(arr[i+1],Math.max(arr[i-1], arr[i-2])));
max=arr[i]-max;
result+=max;
}
}
System.out.println("#"+testCase+" "+result);
}
}
'알고리즘 > SWEA' 카테고리의 다른 글
[SWEA] D2 1954 달팽이 숫자 자바(Java) (0) | 2023.11.16 |
---|---|
[SWEA] D2 2001 파리퇴치 자바(Java) (0) | 2023.11.16 |
[SWEA] D3 5215 햄버거 다이어트 자바(Java) (0) | 2023.11.15 |
[SWEA] D2 1204 최빈수 구하기 자바(Java) (0) | 2023.11.15 |
[SWEA] D2 1859 백만 장자 프로젝트 자바(Java) (1) | 2023.11.15 |