-
Notifications
You must be signed in to change notification settings - Fork 0
/
1806.cpp
165 lines (137 loc) · 4.61 KB
/
1806.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
/**
source:https://acm.timus.ru/problem.aspx?num=1806
Пояснения к примененному алгоритму:
Данную задачу можно разбить на два логических этапа: построение графа и нахождение (или определение отсутствия) кратчашйего пути между двумя узлами графа.
1. Построение графа.
Для построения графа будем использовать следующий алгоритм
1) Добавляем следующий номер в граф
2) Последовательно меняем цифру в каждой позиции или меняем 2 цифры местами
3) Если одно из действий из пункта 2 приводит к образованию другого номера, то соединяем соответствующие узлы ребром, вес которого определяется номером измененной в п. 2 позиции.
2. Нахождение кратчайшего пути
Для нахождения кратчайшего пути использовался алгоритм Дейкстры.
*/
#include <iostream>
#include <vector>
#include <map>
#include <unordered_map>
#include <algorithm>
#include <deque>
#include <queue>
const uint16_t INF = 50010u;
using namespace std;
class Graph
{
vector<uint16_t> price;
unordered_map<string, uint16_t> num_to_id;
vector<string> id_to_num;
vector< vector< pair<uint16_t , uint16_t> > > edges;
vector<uint16_t> length;
vector<uint16_t> parents;
uint16_t n, iter;
public:
explicit Graph(uint16_t n): n(n)
{
length = vector<uint16_t>(n + 5, INF);
parents = vector<uint16_t>(n + 5);
id_to_num = vector<string>(n + 5);
edges = vector< vector < pair<uint16_t, uint16_t > > >(n + 5);
iter = 0;
}
void insert_price(uint16_t val)
{
price.push_back(val);
}
void insert_num(string & val_str)
{
num_to_id[val_str] = iter;
id_to_num[iter++] = val_str;
for (int16_t i = 0; i < 10; i++)
{
for(char e = 48; e < 58; e++)
{
if(val_str[i] != e)
{
string temp = val_str;
temp[i] = e;
if(num_to_id.find(temp) != num_to_id.end())
{
uint16_t id1 = num_to_id[val_str], id2 = num_to_id[temp];
edges[id1].emplace_back(id2, price[i]);
edges[id2].emplace_back(id1, price[i]);
}
}
}
for(int16_t j = i + 1; j < 10; j++)
{
string temp = val_str;
swap(temp[i], temp[j]);
if(num_to_id.find(temp) != num_to_id.end())
{
uint16_t id1 = num_to_id[val_str], id2 = num_to_id[temp];
edges[id1].emplace_back(id2, price[i]);
edges[id2].emplace_back(id1, price[i]);
}
}
}
}
void solve()
{
priority_queue <pair<uint16_t, uint16_t>> que;
length[0] = 0;
que.push({0, 0});
while(!que.empty())
{
uint16_t v = que.top().second;
que.pop();
for (auto it : edges[v])
{
uint16_t to = it.first, len = it.second;
if (length[v] + len < length[to])
{
length[to] = length[v] + len;
parents[to] = v;
que.push({length[to], to});
}
}
}
}
void print_result(uint16_t end)
{
deque<uint16_t> path;
if (length[end] == INF)
{
cout << "-1";
return;
}
for (int64_t i = end; i != 0; i = parents[i])
path.push_front(i);
path.push_front(0);
cout << length[end] << '\n' << path.size() << '\n';
for (auto i : path)
cout << i + 1 << " ";
}
};
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
uint16_t n = 0;
uint16_t price;
string num;
cin >> n;
Graph graph = Graph(n);
for (int16_t i = 0; i < 10; i++)
{
cin >> price;
graph.insert_price(price);
}
for (uint16_t i = 0; i < n; i++)
{
cin >> num;
graph.insert_num(num);
}
graph.solve();
graph.print_result(n - 1);
return 0;
}