forked from beet-aizu/library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathskewheap.cpp
196 lines (173 loc) · 3.69 KB
/
skewheap.cpp
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
#include<bits/stdc++.h>
using namespace std;
using Int = long long;
#include<bits/stdc++.h>
using namespace std;
using Int = long long;
//BEGIN CUT HERE
template<typename T, typename E>
struct SkewHeap{
using G = function<T(T,E)>;
using H = function<E(E,E)>;
using C = function<bool(T,T)>;
G g;
H h;
C c;
T INF;
E ei;
SkewHeap(G g,H h,C c,T INF,E ei):g(g),h(h),c(c),INF(INF),ei(ei){}
struct Node{
Node *l,*r;
T val;
E add;
Node(T val,E add):val(val),add(add){l=r=nullptr;}
};
void eval(Node *a){
if(a==nullptr) return;
if(a->add==ei) return;
if(a->l) a->l->add=h(a->l->add,a->add);
if(a->r) a->r->add=h(a->r->add,a->add);
a->val=g(a->val,a->add);
a->add=ei;
}
T top(Node *a){
return a!=nullptr?g(a->val,a->add):INF;
}
T snd(Node *a){
eval(a);
return a!=nullptr?min(top(a->l),top(a->r)):INF;
}
Node* add(Node *a,E d){
if(a!=nullptr) a->add=h(a->add,d);
return a;
}
Node* push(T v){
return new Node(v,ei);
}
Node* meld(Node *a,Node *b){
if(a==nullptr) return b;
if(b==nullptr) return a;
if(c(top(a),top(b))) swap(a,b);
eval(a);
a->r=meld(a->r,b);
swap(a->l,a->r);
return a;
}
Node* pop(Node* a){
eval(a);
auto res=meld(a->l,a->r);
delete a;
return res;
}
};
//END CUT HERE
struct ALDS1_9_C{
signed solve(){
cin.tie(0);
ios::sync_with_stdio(0);
using Heap=SkewHeap<int, int>;
Heap::G g=[](int a,int b){return a+b;};
Heap::H h=[](int a,int b){return a+b;};
Heap::C c=[](int a,int b){return a<b;};
int INF = -1;
Heap heap(g,h,c,INF,0);
auto base=heap.push(0);
string s;
while(cin>>s,s!="end"){
int x;
if(s=="insert"){
cin>>x;
base=heap.meld(base,heap.push(x));
}
if(s=="extract"){
x=heap.top(base);
base=heap.pop(base);
cout<<x<<endl;
}
}
return 0;
}
/*
verified on 2018/03/04
http://judge.u-aizu.ac.jp/onlinejudge/description.jsp?id=ALDS1_9_C&lang=jp
*/
};
struct APC001_D{
struct UnionFind{
int n;
vector<int> r,p;
UnionFind(){}
UnionFind(int sz):n(sz),r(sz,1),p(sz,0){iota(p.begin(),p.end(),0);}
int find(int x){
return (x==p[x]?x:p[x]=find(p[x]));
}
bool same(int x,int y){
return find(x)==find(y);
}
void unite(int x,int y){
x=find(x);y=find(y);
if(x==y) return;
if(r[x]<r[y]) swap(x,y);
r[x]+=r[y];
p[y]=x;
}
};
signed solve(){
using Heap = SkewHeap<Int, Int>;
Int n,m;
cin>>n>>m;
vector<Int> a(n);
for(Int i=0;i<n;i++) cin>>a[i];
Heap::G g=[](Int a,Int b){return a+b;};
Heap::H h=[](Int a,Int b){return a+b;};
Heap::C c=[](Int a,Int b){return a>b;};
const Int INF = 1e16;
Heap heap(g,h,c,INF,0);
vector<Heap::Node*> v(n);
for(Int i=0;i<n;i++) v[i]=heap.push(a[i]);
UnionFind uf(n);
for(Int i=0;i<m;i++){
Int x,y;
cin>>x>>y;
x=uf.find(x);y=uf.find(y);
uf.unite(x,y);
if(uf.find(x)!=x) swap(x,y);
v[x]=heap.meld(v[x],v[y]);
v[y]=NULL;
}
if(m==n-1){
cout<<0<<endl;
return 0;
}
Heap::Node* base=NULL;
Int ans=0,cnt=0;
for(Int i=0;i<n;i++){
if(uf.find(i)==i){
ans+=heap.top(v[i]);
v[i]=heap.pop(v[i]);
base=heap.meld(base,v[i]);
cnt++;
}
}
while(m*2+cnt<(n-1)*2){
if(base==NULL){
cout<<"Impossible"<<endl;
return 0;
}
ans+=heap.top(base);
base=heap.pop(base);
cnt++;
}
cout<<ans<<endl;
return 0;
}
/*
verified on 2018/03/04
https://beta.atcoder.jp/contests/apc001/tasks/apc001_d
*/
};
signed main(){
//ALDS1_9_C ans;
APC001_D ans;
ans.solve();
}