C - Hyperhuffman(哈弗曼值)

來源:互聯網
上載者:User

標籤:優先隊列

C - Hyperhuffman Time Limit: 20000/10000MS (Java/Others)  Memory Limit: 128000/64000KB (Java/Others)SubmitStatusProblem Description

      You might have heard about Huffman encoding - that is the coding system that minimizes the expected length of the text if the codes for characters are required to consist of an integral number of bits.

      Let us recall codes assignment process in Huffman encoding. First the Huffman tree is constructed. Let the alphabet consist of N characters, i-th of which occurs Pi times in the input text. Initially all characters are considered to be active nodes of the future tree, i-th being marked with Pi. On each step take two active nodes with smallest marks, create the new node, mark it with the sum of the considered nodes and make them the children of the new node. Then remove the two nodes that now have parent from the set of active nodes and make the new node active. This process is repeated until only one active node exists, it is made the root of the tree.

      Note that the characters of the alphabet are represented by the leaves of the tree. For each leaf node the length of its code in the Huffman encoding is the length of the path from the root to the node. The code itself can be constrcuted the following way: for each internal node consider two edges from it to its children. Assign 0 to one of them and 1 to another. The code of the character is then the sequence of 0s and 1s passed on the way from the root to the leaf node representing this character.

      In this problem you are asked to detect the length of the text after it being encoded with Huffman method. Since the length of the code for the character depends only on the number of occurences of this character, the text itself is not given - only the number of occurences of each character. Characters are given from most rare to most frequent.

      Note that the alphabet used for the text is quite huge - it may contain up to 500 000 characters.

Input      The first line of the input file contains N - the number of different characters used in the text (2 ≤ N ≤ 500 000). The second line contains N integer numbers Pi - the number of occurences of each character (1 ≤ Pi ≤ 109, Pi ≤ Pi+1 for all valid i).Output      Output the length of the text after encoding it using Huffman method, in bits.Sample Input
31 1 4
Sample Output
8
#include<stdio.h>#include<iostream>#include<queue>using namespace std;#define ll long longtypedef struct nnn{    ll sum,v;    friend bool operator<(struct nnn a,struct nnn b)    {        return a.v>b.v;    }}node;priority_queue<node>q;ll count(){    node p1,p2;    while(!q.empty())    {        p1=q.top(); q.pop();        if(q.empty())         return p1.sum;        p2=q.top(); q.pop();        p1.sum+=p2.sum+p1.v+p2.v;        p1.v+=p2.v;        q.push(p1);    }}int main(){    node p;    int n;    while(scanf("%d",&n)>0)    {        while(!q.empty())q.pop();        while(n--)        {            scanf("%lld",&p.v);            p.sum=0; q.push(p);        }        printf("%lld\n",count());    }}


C - Hyperhuffman(哈弗曼值)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.