Cod sursa(job #479682)

Utilizator razvi9Jurca Razvan razvi9 Data 24 august 2010 20:24:14
Problema Coduri Huffman Scor 30
Compilator cpp Status done
Runda Arhiva educationala Marime 1.24 kb
#include <fstream>
#include <vector>
#include <queue>
using namespace std;

struct node
{
	node *left, *right;
	int count;
	int idx;
	
	bool operator<(const node &other) const
	{
		return this->count < other.count;
	}

	bool operator>(const node &other) const
	{
		return this->count > other.count;
	}
};

int n;
priority_queue<node, vector<node>, greater<node> > q;
vector<pair<int, int> > res;

int df(node *n, int lg, int cod)
{
	if(n->left == NULL)
	{
		res[n->idx] = make_pair(lg, cod);
		return 0;
	}
	else
		return n->count + df(n->left, lg + 1, cod << 1) + df(n->right, lg + 1, (cod << 1) + 1);
}

int main()
{
	ifstream cin("huffman.in");
	ofstream cout("huffman.out");

	int x;
	cin >> n;
	res.resize(n);
	for(int i=0;i<n;++i)
	{
		cin >> x;
		node n;
		n.right = n.left = NULL;
		n.count = x;
		n.idx = i;
		q.push(n);
	}

	int count = 0;
	while(q.size() > 1)
	{
		node *s = new node; *s = q.top(); q.pop();
		node *d = new node; *d= q.top(); q.pop();
		node n;
		n.count = s->count + d->count;
		n.left = s;
		n.right = d;
		q.push(n);
	}

	node r = q.top();

	cout << df(&r, 0, 0) << endl;

	for(int i=0;i<n;++i)
		cout << res[i].first << " " << res[i].second << "\n";

	return 0;
}