[백준] PS/Java

[백준 13305] 주유소 - JAVA

SH3542 2025. 1. 28. 20:30

 

https://www.acmicpc.net/problem/13305

 

그리디 문제다.

 

현재 도시의 기름 값을 기준으로, 기름 값이 더 싼 도시를 찾을 때 까지 달린다.

 

더 싼 도시를 찾았다면, 그 도시의 기름 값을 기준으로 앞선 과정을 반복한다.

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Arrays;

class Main {

  public static void main(String[] args) throws IOException {

    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    int N = Integer.parseInt(br.readLine());

    int[] load = Arrays.stream(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    int[] city = Arrays.stream(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();

    int L = load.length;
    int C = city.length;
    long ans = 0;

    int cur = 0;
    long cheap = city[cur];

    while(cur < L) {

      // 다음 도시까지 달린다.
      ans += cheap * load[cur];
      cur++;

      // 다음 도시 기름 값이 더 싸면 거기까지만 간다.
      if(city[cur] < cheap) {
        cheap = city[cur];
      }

      // 아니라면, 더 달린다.
    }

    System.out.println(ans);
  }
}