摘要: A - Buy and Resell 题意:给出n个交易点,每次能够选择买或者卖,求获得最大利润 思路:维护两个优先队列,一个是卖,一个是替换,当价格差相同时,优先替换,因为次数要最少 1 #include <bits/stdc++.h> 2 using namespace std; 3 4 #de 阅读全文
posted @ 2018-08-25 19:11 Dup4 阅读(407) 评论(0) 推荐(0) 编辑