How to Use Priority Queue in Java or C++ to Compute Last Stone W

  • 时间:2020-09-10 12:45:51
  • 分类:网络文摘
  • 阅读:124 次

We have a collection of stones, each stone has a positive integer weight. Each turn, we choose the two heaviest stones and smash them together. Suppose the stones have weights x and y with x <= y. The result of this smash is:

If x == y, both stones are totally destroyed;
If x != y, the stone of weight x is totally destroyed, and the stone of weight y has new weight y-x.
At the end, there is at most 1 stone left. Return the weight of this stone (or 0 if there are no stones left.)

Example 1:
Input: [2,7,4,1,8,1]
Output: 1

Explanation:
We combine 7 and 8 to get 1 so the array converts to [2,4,1,1,1] then,
we combine 2 and 4 to get 2 so the array converts to [2,1,1,1] then,
we combine 2 and 1 to get 1 so the array converts to [1,1,1] then,
we combine 1 and 1 to get 0 so the array converts to [1] then that’s the value of last stone.

Note:
1 <= stones.length <= 30
1 <= stones[i] <= 1000

Hints:
Simulate the process. We can do it with a heap, or by sorting some list of stones every time we take a turn.

What is a Priority Queue?

We know a Queue is a First In First Out data structure. The Priority Queue is a special queue that the max or min value of the queue is popped out (dequeue). Therefore, the Priority Queue is usually based on a max/min heap.

Priority Queue in C++ Example

Be default, the priority queue in C++ pops out the max element. Thus the above problem can be solved by simulating the process using a priority queue. Popping out two elements which are the biggest in the array, and push the difference (if it is not zero) back to the priority queue.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class Solution {
public:
    int lastStoneWeight(vector<int>& stones) {
        if (stones.empty()) return 0;
        priority_queue<int> pq;
        for (const auto &n: stones) {
            pq.push(n);
        }
        while (pq.size() > 1) {
            int s1 = pq.top();
            pq.pop();
            int s2 = pq.top();
            pq.pop();
            if (s1 != s2) pq.push(s1 - s2);
        }
        return pq.empty() ? 0 : pq.top();
    }
};
class Solution {
public:
    int lastStoneWeight(vector<int>& stones) {
        if (stones.empty()) return 0;
        priority_queue<int> pq;
        for (const auto &n: stones) {
            pq.push(n);
        }
        while (pq.size() > 1) {
            int s1 = pq.top();
            pq.pop();
            int s2 = pq.top();
            pq.pop();
            if (s1 != s2) pq.push(s1 - s2);
        }
        return pq.empty() ? 0 : pq.top();
    }
};

We can declare in C++ a min priority queue, using the following syntax:

1
priority_queue<int, vector<int>, std::greater<int>> pq;
priority_queue<int, vector<int>, std::greater<int>> pq;

Priority Queue in Java Example

In Java, we can instantise the abstract Queue type using Priority Queue. By default, the Priority Queue in Java pops out the min element, and thus, we would need to provide the custom comparator:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
class Solution {
    public int lastStoneWeight(int[] stones) {
        Queue<Integer> pq = new PriorityQueue<Integer>(stones.length, (a, b) -> b - a);
        for (int x: stones) {
            pq.offer(x);
        }
        while (pq.size() > 1) {
            int a = pq.peek();
            pq.poll();
            int b = pq.peek();
            pq.poll();
            if (a != b) {
                pq.offer(a - b);
            }
        }
        return pq.isEmpty() ? 0 : pq.peek();
    }
}
class Solution {
    public int lastStoneWeight(int[] stones) {
        Queue<Integer> pq = new PriorityQueue<Integer>(stones.length, (a, b) -> b - a);
        for (int x: stones) {
            pq.offer(x);
        }
        while (pq.size() > 1) {
            int a = pq.peek();
            pq.poll();
            int b = pq.peek();
            pq.poll();
            if (a != b) {
                pq.offer(a - b);
            }
        }
        return pq.isEmpty() ? 0 : pq.peek();
    }
}

The Priority Queue overloaded constructor takes first parameter as the initial capacity.

–EOF (The Ultimate Computing & Technology Blog) —

推荐阅读:
SEO收录异常诊断:负载均衡架构导致的SEO问题及解决方案  宝塔面板出现漏洞,站长如何做才能让网站更加安全?  掌握这7大SEO优化技巧,提高网站自然排名  网络推广SEO优化是怎么做的?  工信部ICP备案备案系统全新改版,速度更快,用户体验更好  影响网站排名的反向链接细节因素盘点  seo优化六步走网站优化基础策略分享  SEO赚不到钱是病,得治!  影响网站排名的反向链接细节因素盘点  百度上线API主动推送功能 
评论列表
添加评论