-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathDISTANCE.cpp
55 lines (55 loc) · 1.48 KB
/
DISTANCE.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
// Ivan Carvalho
// Solution to https://www.spoj.com/problems/DISTANCE/
#include <algorithm>
#include <cstdio>
#define gc getchar_unlocked
#define gc getchar_unlocked
void getint(int &x) {
register int c = gc();
x = 0;
int neg = 0;
for (; ((c < 48 || c > 57) && c != '-'); c = gc())
;
if (c == '-') {
neg = 1;
c = gc();
}
for (; c > 47 && c < 58; c = gc()) {
x = (x << 1) + (x << 3) + c - 48;
}
if (neg) x = -x;
}
using namespace std;
int main() {
int a[6];
int n, dimensoes;
getint(n);
getint(dimensoes);
int pot = (1 << (dimensoes - 1));
int minimos[32];
int maximos[32];
for (int bitmask = 0; bitmask < pot; bitmask++) {
minimos[bitmask] = 2000000;
maximos[bitmask] = -minimos[bitmask];
}
for (int vez = 0; vez < n; vez++) {
for (int i = 0; i < dimensoes; i++) getint(a[i]);
for (int bitmask = 0; bitmask < pot; bitmask++) {
int qtd = a[0];
for (int i = 0; i < dimensoes - 1; i++) {
if (bitmask & (1 << i))
qtd += a[i + 1];
else
qtd -= a[i + 1];
}
minimos[bitmask] = min(minimos[bitmask], qtd);
maximos[bitmask] = max(maximos[bitmask], qtd);
}
}
int ans = 0;
for (int bitmask = 0; bitmask < pot; bitmask++) {
ans = max(ans, maximos[bitmask] - minimos[bitmask]);
}
printf("%d\n", ans);
return 0;
}