LeetCode-in-Java

3273. Minimum Amount of Damage Dealt to Bob

Hard

You are given an integer power and two integer arrays damage and health, both having length n.

Bob has n enemies, where enemy i will deal Bob damage[i] points of damage per second while they are alive (i.e. health[i] > 0).

Every second, after the enemies deal damage to Bob, he chooses one of the enemies that is still alive and deals power points of damage to them.

Determine the minimum total amount of damage points that will be dealt to Bob before all n enemies are dead.

Example 1:

Input: power = 4, damage = [1,2,3,4], health = [4,5,6,8]

Output: 39

Explanation:

Example 2:

Input: power = 1, damage = [1,1,1,1], health = [1,2,3,4]

Output: 20

Explanation:

Example 3:

Input: power = 8, damage = [40], health = [59]

Output: 320

Constraints:

Solution

import java.util.Arrays;

@SuppressWarnings("java:S1210")
public class Solution {
    public long minDamage(int pw, int[] damage, int[] health) {
        long res = 0;
        long sum = 0;
        for (int e : damage) {
            sum += e;
        }
        Pair[] pairs = new Pair[damage.length];
        for (int e = 0; e < damage.length; e++) {
            pairs[e] = new Pair(damage[e], (health[e] + pw - 1) / pw);
        }
        Arrays.sort(pairs);
        for (Pair pr : pairs) {
            res += pr.val * sum;
            sum -= pr.key;
        }
        return res;
    }

    static class Pair implements Comparable<Pair> {
        int key;
        int val;

        Pair(int key, int val) {
            this.key = key;
            this.val = val;
        }

        @Override
        public int compareTo(Pair p) {
            return val * p.key - key * p.val;
        }
    }
}