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
- COS Pro
- 프로그래머스
- 이진수 변환
- Queue
- lv2
- 문자열
- 백준
- 스프링부트 도커 배포
- 버퍼
- 스택
- 스프링부트 도커
- 프로그래머스 문자열 정렬
- 알고리즘
- java
- Lv1
- 삼각형의 완성조건
- StringTokenizer
- 자바
- Programmers
- lv0
- 오름차순 정렬
- 큐
- 프로그래머스 풀이
- index of
- 백준 N과 M 자바
- SWEA
- 클라이언트
- Stack
- 스프링부트 도커로 배포
- 프로그래머스 자바
Archives
- Today
- Total
mun dev
[SWEA] D2 1859 백만 장자 프로젝트 자바(Java) 본문
문제 링크
풀이
처음 풀이는 배열 첫 번째 부터 큰 값을 찾고 다음 값이 작아지면 가장 컸던 max 값을 기준으로 그 전 값들을 판매한 이익을 더해서 풀이했다.
첫 3개 정도의 테스트 케이스는 맞았지만 나머지는 정답과 다르게 나왔다.
타입을 Long으로도 바꾸고 했지만 배열 끝부터 검사하여 작은 값들을 카운트해서 계산하니 원하는 정답이 나올 수 있었다.
쉽게 풀 것 같았지만 생각보다 어려웠던 문제였다..
풀이 코드
import java.io.*;
import java.util.*;
public class Test {
public static int n;
public static long result = 0;
public static int arr[];
public static void main(String[] args) throws NumberFormatException, IOException {
Scanner sc = new Scanner(System.in);
int T = sc.nextInt();
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();
}
sumProfit(test_case, arr);
}
}
public static void sumProfit(int testCase, int arr[]) {
long max = Integer.MIN_VALUE;
int cnt = 0;
long cost = 0;
for (int i = arr.length - 1; i >= 0; i--) {
if (arr[i] > max) {
result += (max * cnt - cost);
max = arr[i];
cost = 0;
cnt = 0;
} else {
cost += arr[i];
cnt++;
}
}
result += (max * cnt - cost);
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] D3 1206 View 자바(Java) (0) | 2023.11.14 |