-
Notifications
You must be signed in to change notification settings - Fork 0
/
2065.cpp
74 lines (58 loc) · 1.36 KB
/
2065.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
#include <iostream>
using namespace std;
typedef struct{
int Id;
int tempo;
int v;
} fila;
int heapsize = 0;
int cont = 0;
int pqless(fila a, fila b){
if (a.tempo < b.tempo) return 1;
if (a.tempo > b.tempo) return 0;
return (a.Id < b.Id);
}
void insert(fila* A, int z, int v){
int i = heapsize++;
A[i].tempo = z;
A[i].Id = ++cont;
A[i].v = v;
while(i != 0 && !pqless(A[(i-1)/2], A[i])){
fila tmp = A[i];
A[i] = A[(i-1)/2];
A[(i-1)/2] = tmp;
i = (i-1)/2;
}
}
void maxHeapify(fila* H, int i){
int maior = i;
int e = 2*i+1;
int d = e+1;
if(e < heapsize && pqless(H[e], H[maior])) maior = e;
if(d < heapsize && pqless(H[d], H[maior])) maior = d;
if(maior != i){
fila aux = H[maior];
H[maior] = H[i];
H[i] = aux;
maxHeapify(H,maior);
}
}
int main(){
int N,M,V,C, tempo = 0, maior = 0;
cin >> N >> M;
fila cx[N];
for(int i=0; i<N; i++) {
cin >> V;
insert(cx, tempo, V);
}
for(int j=0; j<M; j++) {
cin >> C;
cx[0].tempo += cx[0].v * C;
maxHeapify(cx, 0);
}
for(int i=0; i<N; i++){
if(cx[i].tempo > maior) maior = cx[i].tempo;
}
cout << maior << "\n";
return 0;
}