-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathCHÊNH LỆCH NHỎ NHẤT
90 lines (90 loc) · 2.88 KB
/
CHÊNH LỆCH NHỎ NHẤT
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
#include <bits/stdc++.h>
#define endl "\n"
using namespace std;
int to_int(string s)
{
int a = 0;
for (int i = 0; i < s.size(); i++)
{
a = a * 10 + s[i] - '0';
}
return a;
}
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
int m, n;
cin >> m >> n;
int a[n + 1], MIN = 1e9;
vector<string> b(m);
vector<string> c;
for (int i = 0; i < m; i++)
{
cin >> b[i];
b[i] = "0" + b[i];
}
for (int i = 1; i <= n; i++)
a[i] = i;
while (1)
{
c.clear();
for (int i = 0; i < m; i++)
{
string x = b[i];
for (int j = 1; j <= n; j++)
x[j] = b[i][a[j]];
c.push_back(x);
}
sort(c.begin(), c.end());
MIN = min(MIN, to_int(c[c.size() - 1]) - to_int(c[0]));
int ok = 0;
for (int i = n - 1; i >= 1; i--)
{
if (a[i] < a[i + 1])
{
ok = 1;
sort(a + i + 1, a + n + 1);
for (int j = i + 1; j <= n; j++)
{
if (a[j] > a[i])
{
swap(a[i], a[j]);
break;
}
}
break;
}
}
if (ok == 0)
break;
}
cout << MIN;
}
/* Do Xuan Huong
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@##################@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@#############################@@@@@@@@@@@@@@@@
@@@@@@@@@@@@&####################################@@@@@@@@@@@@
@@@@@@@@@@##########################################@@@@@@@@@
@@@@@@@@##############################################@@@@@@@
@@@@@@#################################################@@@@@@
@@@@@####################################################@@@@
@@@%#####################@@@@@@@@@@@######################@@@
@@@###################@@@@@@@@@@@@@@@@@####################@@
@@##################@@@@@@ @@@@@@##################@@
@@#################@@@@@ @@@@###################@
@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@
@ &@@@@ @@@@ .......@@
@@ @@@@@@ @@@@@@ .......@@
@@ @@@@@@@@@@@@@@@@@ .......@@@
@@@ @@@@@@@@@@@ ......@@@@
@@@@ ......@@@@@
@@@@@@ ......@@@@@@
@@@@@@@ .....@@@@@@@@
@@@@@@@@@ .....@@@@@@@@@@
@@@@@@@@@@@@ ....@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@ ....@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@% .@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
*/