P1090 [NOIP2004 提高组] 合并果子 / [USACO06NOV] Fence Repair G - 洛谷 | 计算机科学教育新生态 (luogu.com.cn)
法一:
这道题是典型的哈夫曼编码,建立两个数组,第一个数组用来存入数据,接着第一个数组每合两个,将新值存入第二个数组,那么下次再取两个最小值时即比较第一个数组的首元素(去掉已经用过的)和第二个数组存入的进行比较,选取较小的一个
上代码:
#include<iostream>
#include<algorithm>
#include<cstring>
using namespace std;
int n, n2, a1[10010], a2[10010], sum = 0;
using namespace std;
int main() {
cin >> n;
memset(a1, 127, sizeof(a1));
memset(a2, 127, sizeof(a2));
for (int i = 0; i < n; i++)
cin >> a1[i];
sort(a1, a1 + n);
int i = 0, j = 0, k, w;
for (k = 1; k < n; k++) {
w = a1[i] < a2[j] ? a1[i++] : a2[j++];//取最小值
w += a1[i] < a2[j] ? a1[i++] : a2[j++];//取第二次最小值
a2[n2++] = w;//加入第二个队列
sum += w;//计算价值
}
cout << sum;
return 0;
}
其中:memset函数本来是用来初始化字符型数组的,如果初始化整形数组,只能初始化0,具体可以看站内大佬写的博客【C语言】memset()函数详解(内存块初始化函数)-CSDN博客。像我这里初始化127,会初始化为一个很大且接近int类型上限的正数,如果初始化128,则会是很小很接近int类型下限的数,0就是0,初始化-1或255时,数组会初始化为-1
法二:
法一是我们在没有学习数据结构可以找到的解,当我们学过了优先队列,便可以采用另一种写法,思路和原来一样,也比较简单,就是考虑的情况比较多
#include<iostream>
#include<vector>
#include<queue>
using namespace std;
int main() {
priority_queue <int, vector<int>, greater<int>>q1;
priority_queue <int, vector<int>, greater<int>>q2;
int n,a;
cin >> n;
int n1 = n;
while (n--) {
cin >> a;
q1.push(a);
}
if (n1 == 1) {
cout << a;
return 1;
}
int k = 1;
int a1, b1,sumweight=0,c1=0;
for (; k < n1; k++) {
if (q2.empty()) {
a1=q1.top();
q1.pop();
b1 = q1.top();
q1.pop();
c1 = a1 + b1;
sumweight += c1;
q2.push(c1);
}
else {
if (!q1.empty() && !q2.empty() && q2.top() >= q1.top()) {
a1 = q1.top();
q1.pop();
}
else if (!q1.empty() && !q2.empty() && q2.top() < q1.top()) {
a1 = q2.top();
q2.pop();
}
else if (q1.empty()) {
a1 = q2.top();
q2.pop();
}
if (!q1.empty() && !q2.empty() && q2.top() > q1.top()) {
b1 = q1.top();
q1.pop();
}
else if (!q1.empty() && !q2.empty() && q2.top() < q1.top()) {
b1 = q2.top();
q2.pop();
}
else if(q1.empty()){
b1 = q2.top();
q2.pop();
}
else{
b1 = q1.top();
q1.pop();
}
c1 = a1 + b1;
sumweight += c1;
q2.push(c1);
}
}
cout << sumweight;
return 0;
}
这道题情况比较多,需要分析到位,要不然就过不了。。。
如果有帮助还请点个赞,有问题的话可以评论捏