uva 10954 - Add All

简介: 点击打开链接uva 10954 题目意思:     有n个数需要求和,每一次求和都要付出和当前和相等的代价,例如1+2 = 3,那么这一次的代价就是3,问我们怎么选择求和的次序才能使得这个代价的总和最小。

点击打开链接uva 10954


题目意思:     有n个数需要求和,每一次求和都要付出和当前和相等的代价,例如1+2 = 3,那么这一次的代价就是3,问我们怎么选择求和的次序才能使得这个代价的总和最小。


解题思路:     1:贪心
                       2:先看一下计算n个数需要几步:
                             n =  1    0
                             n =  2    1
                             n =  3    2
                             .........
                             n =  k     k-1
                       3:由于n个数的总计算次数是一定,所以只要满足每一步的计算都是最小的代价,那么最后的总代价就是最小的。所以我们可以用一个multiset来存储当前的元素,只要每一次都让multiset的前两位相加,然后删除这两位并把和插入multiset,直到multiset的元素个数为1.


代码:

#include <algorithm>
#include <iostream>
#include <cstring>
#include <string>
#include <vector>
#include <cstdio>
#include <stack>
#include <queue>
#include <set>
using namespace std;
#define MAXN 100010

int n , ans;
multiset<int>s;

void solve() {
    int sum  ; ans = 0;
    multiset<int>::iterator it1 , it2;
    while(1){
        if(s.size() == 1) break;
        it1 = s.begin() ; it2 = it1++;
        sum = (*it1)+(*it2);
        s.erase(it1) ; s.erase(it2);
        s.insert(sum);
        ans += sum;
    }
    printf("%d\n" , ans);
}

int main() {
    //freopen("input.txt" , "r" , stdin);
    int a;
    while(scanf("%d" , &n) && n){
        s.clear();
        for(int i = 0 ; i < n ; i++){
            scanf("%d" , &a) ; s.insert(a);
        }
        solve();
    }
    return 0;
}



目录
相关文章
|
算法
uva 10891 game of sum
题目链接 详细请参考刘汝佳《算法竞赛入门经典训练指南》 p67
31 0
UVa11076 - Add Again
UVa11076 - Add Again
55 0
|
存储 算法 安全
LeetCode - #2 Add Two Numbers
我们社区从本期开始会将顾毅(Netflix 增长黑客,《iOS 面试之道》作者,ACE 职业健身教练。)的 Swift 算法题题解整理为文字版以方便大家学习与阅读。 不积跬步,无以至千里;不积小流,无以成江海,Swift社区 伴你前行。
LeetCode - #2 Add Two Numbers
UVa343 What Base Is This
UVa343 What Base Is This
49 0
|
算法 Python 容器
leetcode 2 Add Two Numbers
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit.
1008 0
LeetCode - 2. Add Two Numbers
2. Add Two Numbers  Problem's Link  ---------------------------------------------------------------------------- Mean:  给你两个数字链表,让你将两个链表相加,结果保存在一个新链表中.
945 0
|
C语言
[LeetCode] Add Two Numbers
The idea is to add the two numbers (represented by linked lists) nodes after nodes and store the result in the longer list.
750 0