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
- 리트코드 자바
- BFS
- 프로그래머스 java
- 인텔리제이 에러
- 스프링 에러
- leetcode
- 그래프 자바
- 코딩테스트
- leetcode 1721
- 자바 5464
- java 프로그래머스
- 분할정복
- 백준
- daily challenge
- 스택
- 백준 16935
- dfs
- 파이썬
- 카카오
- 자바 리트코드
- 구현
- java leetcode
- 리트코드 1557
- 코테
- 프로그래머스
- 백준 18222
- DP
- 리트코드
- 자바
- Java
Archives
- Today
- Total
레벨업 일지
[Java] 백준 13305 주유소 본문
문제
https://www.acmicpc.net/problem/13305
풀이
자 단순하게 O(N) 탐색으로 풀수있다. 쭈루룩 훑어가면서 현재 min 보다 낮은게 나오면 min을 업데이트 해주고
거리 x min 누적합을 구해주면 OK.
참고
자바의 long type을 명시 안하면 int overflow 발생함으로 주의
코드
import java.io.*;
import java.util.*;
public class Main {
int n, k;
int dist[],cost[];
public static void main(String args[]) throws IOException {
Main m = new Main();
m.sol();
}
public long getN(){
long ret = 0;
long minN = -1;
for(int i =0 ;i < dist.length ;i++){
if(minN == -1 || minN > cost[i]){
minN = cost[i];
}
ret += minN*dist[i];
}
return ret;
}
public void sol() throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
n= Integer.parseInt(br.readLine());
dist = new int[n-1];
cost = new int[n];
StringTokenizer st = new StringTokenizer(br.readLine());
for(int i =0; i< n-1;i++) {
dist[i] = Integer.parseInt(st.nextToken());
}
st = new StringTokenizer(br.readLine());
for(int i =0 ; i< n;i++){
cost[i] = Integer.parseInt(st.nextToken());
}
System.out.println(getN());
}
}
Comments