题解 | #哈夫曼树#

哈夫曼树

https://www.nowcoder.com/practice/162753046d5f47c7aac01a5b2fcda155

#include <bits/stdc++.h>
using namespace std;

int main() {
    int n;cin>>n;
    vector<int>v;
    while(n--){
        int temp;cin>>temp;
        v.push_back(temp);
    }
    sort(v.begin(),v.end());
    int totalWeight = 0;
    int sum=0;
    while(v.size()!=1){
        totalWeight=v[0]+v[1];
        sum+=totalWeight;
        v.erase(v.begin()+1);
        v.erase(v.begin());
        v.push_back(totalWeight);
        sort(v.begin(),v.end());
    }
    cout<<sum<<endl;
}
// 64 位输出请用 printf("%lld")

容易想到,但是复杂度很高

全部评论

相关推荐

11-13 14:37
门头沟学院 Java
程序员牛肉:是的,我觉得你最先需要的是多接触计算机圈子。我感觉你这个写的太幼稚了,根本没换位思考面试官。 你对实习的描述还是我写了前后端,我写了Restful接口,我用了EChatrs。你这让面试官怎么问你?问你什么是前后端?问你什么是Restful?讲真的兄弟,你这个简历在面试官眼里就是啥也不懂的好学生。所以一定要尽快加入一个圈子跟大家多聊聊,看看正儿八经的简历是怎么写的。 可以看一下我首页的简历怎么写那篇文章来学一下,你这里面的坑点我那篇文章里面都有讲过。
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务