POJ 1521

简介: //Huffman树的构造就不赘述了,使用优先队列每次选择队头的两个数并将其出列,相加后将结果放入队列中,直到队列为空为止. #include #include #include #include #include #include using namespace st...
//Huffman树的构造就不赘述了,使用优先队列每次选择队头的两个数并将其出列,相加后将结果放入队列中,直到队列为空为止.
#include <iostream>
#include <queue>
#include <vector>
#include <string>
#include <iomanip>
#include <algorithm>
using namespace std;
int main()
{
    int i,j,k;
    string s;
    while(1)//cin遇到空格结束 
    {
        getline(cin,s);
        if(s=="END")
            break;
        priority_queue <int , vector <int>,greater<int> > q;
        sort(s.begin(),s.end());
        /*
        为什么要排序?
        因为下面用到的字符分类统计是和下一个比较,
        不相同就立马入队,若是相同的字符中间还有其他字符
        会被认作是不同字符,因为q.size()表示的是字符种类
        */ 
        int cnt=0;
        char ch = s[0];
        for(i=0;i<s.length();i++)//字符分类统计 
        if(s[i]==ch)
            cnt++;
        else
        {
            q.push(cnt);
            cnt=1;//因为执行到头了,i该自增了 
            ch=s[i];
        }
        q.push(cnt);//这句原来忘了
        int old_len = s.length()*8;
        int new_len = 0;
        //if(s.length()==1)
           // new_len = 1;
        if(q.size()==1)//上面的语句输入AAA时,只有一种字符,此时new_len=0 ,除数为0,竟然报wa,没报RE 
            new_len = q.top();      
        while(q.size()>1)
        {
            int a = q.top();
            q.pop();
            int b = q.top();
            q.pop();
            q.push(a+b);
            new_len += a+b;
        }
        q.pop();
        cout<<old_len<<" "<<new_len<<" "<<fixed<<setprecision(1)<<(double)old_len/new_len<<endl;
        //printf("%d %d %.1f\n",old_len,new_len,old_len*1.0/new_len);
    }
     return 0;
}
         
        
        
        
        

 

目录
相关文章
poj 3298 数状数组
题目大意是一条大街上住着n个乒乓球爱好者,他们的水平高低用一个数值表示,他们经常举办比赛,比赛要三个人,一人当裁判。对裁判是有一定要求的,裁判的水平必须介于两选手之间且必须住他们中间,计算可以举办多少场比赛
42 0
|
算法 数据建模 机器学习/深度学习
poj 3664
http://poj.org/problem?id=3664 进行两轮选举,第一轮选前n进入第二轮,第二轮选最高   #include #include using namespace std; struct vote { int a,b; int c; ...
738 0
|
人工智能 BI
poj-3185-开关问题
描述   牛一行20他们喝的水碗。碗可以那么(面向正确的为清凉水)或颠倒的(一个位置而没有水)。他们希望所有20个水碗那么,因此用宽鼻子翻碗。   嘴太宽,他们不仅翻转一碗还碗的碗两侧(总共三个或三个——在两端的情况下碗——两碗)。
815 0
|
机器学习/深度学习
poj题目分类
http://www.cnblogs.com/kuangbin/archive/2011/07/29/2120667.html
773 0
|
存储
大数加法-poj-1503
poj-1503-Integer Inquiry Description One of the first users of BIT's new supercomputer was Chip Diller. He extended his exploration of powers of 3 to go from 0 to 333 and he explored taking vari
1120 0