-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQuestion38.c
77 lines (74 loc) · 1.58 KB
/
Question38.c
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
#include<stdio.h>
int t=0, R=0, C=0;
int G[300][300];
int proc(int g[300][300], int x, int y)
{
register int s = 0;
if (x > 0)
{
// up
if (g[x][y] - g[x-1][y] > 1)
{
s += g[x][y] - g[x-1][y] - 1;
g[x-1][y] = g[x][y] - 1;
}
}
if (x < R-1)
{
// down
if (g[x][y] - g[x+1][y] > 1)
{
s += g[x][y] - g[x+1][y] - 1;
g[x+1][y] = g[x][y] - 1;
}
}
if (y > 0)
{
// left
if (g[x][y] - g[x][y-1] > 1)
{
s += g[x][y] - g[x][y-1] - 1;
g[x][y-1] = g[x][y] - 1;
}
}
if (y < C-1)
{
// right
if (g[x][y] - g[x][y+1] > 1)
{
s += g[x][y] - g[x][y+1] - 1;
g[x][y+1] = g[x][y] - 1;
}
}
return s;
}
int main()
{
scanf("%d", &t);
for (int i=0; i<t; i++)
{
scanf("%d %d", &R, &C);
for (int x=0; x<R; x++)
for (int y=0; y<C; y++)
scanf("%d", G[x]+y);
register long long s=0;
register int not_over = 600;
while (not_over)
{
not_over = 0;
register int add = 0;
for (register int x=0; x<R; x++)
for (register int y=0; y<C; y++)
{
add = proc(G, x, y);
if (add)
{
s += add;
not_over++;
}
}
}
printf("Case #%d: %lld\n", i+1, s);
}
return 0;
}