-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path2430.cpp
83 lines (83 loc) · 2.44 KB
/
2430.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
// Ivan Carvalho
// Solution to https://www.beecrowd.com.br/judge/problems/view/2430
#include <algorithm>
#include <iostream>
#include <map>
#include <set>
#include <string>
#include <vector>
using namespace std;
const int MAXN = 3 * 1e5 + 10;
int ponteiro, N, n, tam[MAXN], filhos[MAXN], nivel[MAXN], total, resp;
set<int> grafo[MAXN];
map<string, int> conversao;
void dfs1(int x) {
filhos[x] = 0;
for (set<int>::iterator it = grafo[x].begin(); it != grafo[x].end(); it++) {
int v = *it;
nivel[v] = nivel[x] + 1;
dfs1(v);
filhos[x] += filhos[v];
}
if (filhos[x] == 0) filhos[x] = 1;
}
void dfs2(int x, int salva, int acumulada) {
if (grafo[x].size() == 0) return;
int proximo_acumulada = (N - filhos[x]) * 3 + acumulada;
int proximo_salva = salva + (tam[x] + (x != 0)) * (filhos[x]);
if (x != 0) {
int temporario = total - proximo_salva + proximo_acumulada;
resp = min(resp, temporario);
}
for (set<int>::iterator it = grafo[x].begin(); it != grafo[x].end(); it++) {
int v = *it;
dfs2(v, proximo_salva, proximo_acumulada);
}
}
int main() {
cin.tie(0);
cout.tie(0);
ios_base::sync_with_stdio(0);
cin >> n;
N = n;
while (n--) {
string entrada, temp;
vector<string> vetorzao;
vector<int> arestas;
arestas.push_back(0);
cin >> entrada;
resp += entrada.size();
total += entrada.size();
for (int i = 0; i < entrada.size(); i++) {
if (entrada[i] == '/') {
vetorzao.push_back(temp);
temp.clear();
} else {
temp.push_back(entrada[i]);
}
}
vetorzao.push_back(temp);
for (int i = 0; i < vetorzao.size(); i++) {
if (!conversao.count(vetorzao[i])) {
conversao[vetorzao[i]] = ++ponteiro;
tam[ponteiro] = vetorzao[i].size();
}
arestas.push_back(conversao[vetorzao[i]]);
}
for (int i = 0; i + 1 < arestas.size(); i++) {
grafo[arestas[i]].insert(arestas[i + 1]);
}
}
n = ponteiro;
dfs1(0);
// for(int i=0;i<=n;i++){
// printf("Vertice %d Filhos %d Nivel %d :",i,filhos[i],nivel[i]);
// for(set<int>::iterator it = grafo[i].begin();it !=
// grafo[i].end();it++){ printf(" %d",*it);
// }
// printf("\n");
// }
dfs2(0, 0, 0);
cout << resp << endl;
return 0;
}