LeetCode-in-Java

3781. Maximum Score After Binary Swaps

Medium

You are given an integer array nums of length n and a binary string s of the same length.

Initially, your score is 0. Each index i where s[i] = '1' contributes nums[i] to the score.

You may perform any number of operations (including zero). In one operation, you may choose an index i such that 0 <= i < n - 1, where s[i] = '0', and s[i + 1] = '1', and swap these two characters.

Return an integer denoting the maximum possible score you can achieve.

Example 1:

Input: nums = [2,1,5,2,3], s = “01010”

Output: 7

Explanation:

We can perform the following swaps:

Positions 0 and 2 contain '1', contributing nums[0] + nums[2] = 2 + 5 = 7. This is maximum score achievable.

Example 2:

Input: nums = [4,7,2,9], s = “0000”

Output: 0

Explanation:

There are no '1' characters in s, so no swaps can be performed. The score remains 0.

Constraints:

Solution

import java.util.PriorityQueue;

public class Solution {
    public long maximumScore(int[] nums, String s) {
        long sum = 0;
        PriorityQueue<Integer> pq = new PriorityQueue<>((a, b) -> b - a);
        for (int i = 0; i < nums.length; i++) {
            if (s.charAt(i) == '1') {
                if (pq.isEmpty() || pq.peek() <= nums[i]) {
                    sum += nums[i];
                } else {
                    sum += pq.poll();
                    pq.add(nums[i]);
                }
            } else {
                pq.add(nums[i]);
            }
        }
        return sum;
    }
}