Life Line
Let's play a new board game "Life Line". The number of the players is greater than 1 and less than 10. In this game, the board is a regular triangle in which many small regular triangles are arranged (See Figure 1). The edges of each small triangle are of the same length.
The size of the board is expressed by the number of vertices on the bottom edge of the outer triangle.For example, the size of the board in Figure 1 is 4.
At the beginning of the game, each player is assigned his own identification number between 1 and 9,and is given some stones on which his identification number is written.
Each player puts his stone in turn on one of the "empty" vertices. An "empty vertex" is a vertex that has no stone on it.
When one player puts his stone on one of the vertices during his turn, some stones might be removed from the board. The player gains points which is equal to the number of the removed stones of himself. The points of a player for a single turn is the points he gained minus the points he lost in that turn.
The conditions for removing stones are as follows :
1.The stones on the board are divided into groups. Each group contains a set of stones whose numbersare the same and placed adjacently. That is, if the same numbered stones are placed adjacently,they belong to the same group.
2.If none of the stones in a group is adjacent to at least one "empty" vertex, all the stones in that group are removed from the board.
Figure 2 shows an example of the groups of stones.
Suppose that the turn of the player '4' comes now. If he puts his stone on the vertex shown in Figure 3a, the conditions will be satisfied to remove some groups of stones (shadowed in Figure 3b). The player gains 6 points, because the 6 stones of others are removed from the board (See Figure 3c).
As another example, suppose that the turn of the player '2' comes in Figure 2. If the player puts his
stone on the vertex shown in Figure 4a, the conditions will be satisfied to remove some groups of stones (shadowed in Figure 4b). The player gains 4 points, because the 4 stones of others are removed. But, at the same time, he loses 3 points, because his 3 stones are removed. As the result, the player's points of this turn is 4 ? 3 = 1 (See Figure 4c).
When each player puts all of his stones on the board, the game is over. The total score of a player is the summation of the points of all of his turns.
Your job is to write a program that tells you the maximum points a player can get (i.e., the points he gains - the points he loses) in his current turn.
Input
The input consists of multiple data. Each data represents the state of the board of the game still in
progress. The format of each data is as follows.
N C
S1,1
S2,1 S2,2
S3,1 S3,2 S3,3
. . .
SN,1 . . . SN,N
N is the size of the board (3 <= N <= 10). C is the identification number of the player whose turn comes now (1 <= C <= 9). That is, your program must calculate his points in this turn. Si,j is the state of the vertex on the board (0 <= Si,j <= 9). If the value of Si,j is positive, it means that there is the stone numbered by Si,j there. If the value of Si,j is 0, it means that the vertex is "empty". Two zeros in a line, i.e., 0 0, represents the end of the input.
Output
For each data, the maximum points the player can get in the turn should be output, each in a separate line.
Sample Input
4 4
2
2 3
1 0 4
1 1 4 0
4 5
2
2 3
3 0 4
1 1 4 0
4 1
2
2 3
3 0 4
1 1 4 0
4 1
1
1 1
1 1 1
1 1 1 0
4 2
1
1 1
1 1 1
1 1 1 0
4 1
0
2 2
5 0 7
0 5 7 0
4 2
0
0 3
1 0 4
0 1 0 4
4 3
0
3 3
3 2 3
0 3 0 3
4 2
0
3 3
3 2 3
0 3 0 3
6 1
1
1 2
1 1 0
6 7 6 8
0 7 6 8 2
6 6 7 2 2 0
5 9
0
0 0
0 0 0
0 0 0 0
0 0 0 0 0
5 3
3
3 2
4 3 2
4 4 0 3
3 3 3 0 3
0 0
Sample Output
6
5
1
-10
8
-1
0
1
-1
5
0
5
Source
题目类型:简单搜索
算法分析:直接以每次"0"为起点搜索计算同时更新最大值即可
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 |
/************************************************** filename :c.cpp author :maksyuki created time :2017/3/3 12:08:02 last modified :2017/3/3 16:36:03 file location :C:\Users\abcd\Desktop\TheEternalPoet ***************************************************/ #pragma comment(linker, "/STACK:102400000,102400000") #include <set> #include <bitset> #include <list> #include <map> #include <stack> #include <queue> #include <deque> #include <string> #include <vector> #include <ios> #include <iostream> #include <fstream> #include <sstream> #include <iomanip> #include <algorithm> #include <utility> #include <complex> #include <numeric> #include <functional> #include <cmath> #include <ctime> #include <climits> #include <cstdarg> #include <cstdio> #include <cstdlib> #include <cstring> #include <cctype> #include <cassert> using namespace std; #define CFF freopen ("in", "r", stdin) #define CPPFF ifstream cin ("in") #define DB(ccc) cout << #ccc << " = " << ccc << endl #define PB push_back #define MP(A, B) make_pair(A, B) typedef long long LL; typedef unsigned long long ULL; typedef double DB; typedef pair <int, int> PII; typedef pair <int, bool> PIB; const int INF = 0x7F7F7F7F; const int MOD = 1e9 + 7; const double EPS = 1e-10; const double PI = 2 * acos (0.0); const int maxn = 66; int N, C; int g[maxn][maxn]; bool vis[maxn][maxn]; bool is_adj; const int dx[] = {1, -1, 0, 0, -1, 1}; const int dy[] = {0, 0, 1, -1, -1, 1}; struct node { int x, y; node(int xx, int yy): x(xx), y(yy) {} }; bool Ok(int x, int y, int val) { if(x >= 1 && x <= N && y >= 1 && y <= N && g[x][y] != INF && !vis[x][y]) { if(g[x][y] == val) return true; if(!g[x][y]) is_adj = true; } return false; } int bfs(int x0, int y0) { queue<node> qu; vis[x0][y0] = true; qu.push(node(x0, y0)); is_adj = false; int res = 1; while(!qu.empty()) { node tt = qu.front(); qu.pop(); for(int i = 0; i < 6; i++) { int tmpx = tt.x + dx[i]; int tmpy = tt.y + dy[i]; if(Ok(tmpx, tmpy, g[x0][y0])) { vis[tmpx][tmpy] = true; qu.push(node(tmpx, tmpy)); res++; } } } if(is_adj) return 0; return res; } int main() { //CFF; //CPPFF; while(scanf("%d%d", &N, &C) != EOF) { if(!N && !C) break; for(int i = 0; i < maxn; i++) for(int j = 0; j < maxn; j++) g[i][j] = INF; for(int i = 1; i <= N; i++) for(int j = 1; j <= i; j++) scanf("%d", &g[i][j]); int maxval = -INF; for(int i = 1; i <= N; i++) for(int j = 1; j <= i; j++) if(g[i][j] == 0) { g[i][j] = C; int tmp = 0; memset(vis, false, sizeof(vis)); for(int k = 1; k <= N; k++) for(int q = 1; q <= k; q++) if(!vis[k][q] && g[k][q] > 0 && g[k][q] != C) tmp += bfs(k, q); tmp -= bfs(i, j); maxval = max(maxval, tmp); g[i][j] = 0; } printf("%d\n", maxval); } return 0; } |
- « 上一篇:poj1179
- poj1664:下一篇 »