-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathspacesaving.h
69 lines (68 loc) · 1.9 KB
/
spacesaving.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
#ifndef _spacesaving_H
#define _spacesaving_H
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <iostream>
#include <algorithm>
#include <string>
#include <cstring>
#include "BOBHASH32.h"
#include "params.h"
#include "ssummary.h"
#include "BOBHASH64.h"
#define rep(i,a,n) for(int i=a;i<=n;i++)
using namespace std;
class spacesaving
{
private:
ssummary *ss;
int K,M2;
public:
spacesaving(int M2,int K):M2(M2),K(K) {ss=new ssummary(M2); ss->clear();}
void Insert(string x)
{
bool mon=false;
int p=ss->find(x);
if (p) mon=true;
if (!mon)
{
int q;
if (ss->tot<M2) q=1; else
q=ss->getmin()+1;
int i=ss->getid();
ss->add2(ss->location(x),i);
ss->str[i]=x;
ss->sum[i]=q;
ss->link(i,0);
while(ss->tot>M2)
{
int t=ss->Right[0];
int tmp=ss->head[t];
ss->cut(ss->head[t]);
ss->recycling(tmp);
}
} else
{
int tmp=ss->Left[ss->sum[p]];
ss->cut(p);
if(ss->head[ss->sum[p]]) tmp=ss->sum[p];
ss->sum[p]++;
ss->link(p,tmp);
}
}
struct Node {string x; int y;} q[MAX_MEM+10];
static int cmp(Node i,Node j) {return i.y>j.y;}
void work()
{
int CNT=0;
for(int i=N;i;i=ss->Left[i])
for(int j=ss->head[i];j;j=ss->Next[j]) {q[CNT].x=ss->str[j]; q[CNT].y=ss->sum[j]; CNT++; }
sort(q,q+CNT,cmp);
}
pair<string ,int> Query(int k)
{
return make_pair(q[k].x,q[k].y);
}
};
#endif