forked from sitz/UVa-Online-Judge
-
Notifications
You must be signed in to change notification settings - Fork 1
/
10051.cpp
101 lines (96 loc) · 1.37 KB
/
10051.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
#include <bits/stdc++.h>
using namespace std;
#define MAXN 505
int A[MAXN][MAXN], F[MAXN][MAXN];
int Kase, N;
char Fase[6][7] = {"front", "back", "left", "right", "top", "bottom"};
struct SS
{
int row;
int col;
} V[MAXN][MAXN];
void PrintPath(int r, int c)
{
int g;
if (V[r][c].row == -1)
{
g = c + 1;
if (c % 2)
{
g = c - 1;
}
printf("%d %s\n", r, Fase[g]);
return;
}
PrintPath(V[r][c].row, V[r][c].col);
g = c + 1;
if (c % 2)
{
g = c - 1;
}
printf("%d %s\n", r, Fase[g]);
}
void LIS()
{
int i, j, max, largest = 0, k, m, g;
int pr, pc, str, stc;
for (i = 1; i <= N; i++)
{
for (j = 0; j < 6; j++)
{
max = 0;
pr = pc = -1;
for (k = i - 1; k >= 0; k--)
{
for (m = 0; m < 6; m++)
{
if (F[k][m] > max)
if (A[i][j] == A[k][m])
{
pr = k;
pc = m;
max = F[k][m];
}
}
}
g = j + 1;
if (j % 2)
{
g = j - 1;
}
F[i][g] = max + 1;
V[i][g].row = pr;
V[i][g].col = pc;
if (F[i][g] > largest)
{
largest = F[i][g];
str = i;
stc = g;
}
}
}
printf("Case #%d\n", Kase++);
printf("%d\n", largest);
PrintPath(str, stc);
}
int main()
{
int i, j;
Kase = 1;
while (scanf("%d", &N) && N)
{
for (i = 1; i <= N; i++)
{
for (j = 0; j < 6; j++)
{
scanf("%d", &A[i][j]);
}
}
if (Kase > 1)
{
putchar('\n');
}
LIS();
}
return 0;
}