C++实现连连看消除算法

时间:2021-12-03 04:30:56

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
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
#include<iostream>
#include<vector>
using namespace std;
bool CheckRemove(int x1,int y1,int x2,int y2,int rows,int cols,int ***pArray);
void Swap(int &a,int &b);
typedef struct
{
 int x;
 int y;
}point;
int main()
{
 int Num=0;
 while(Num<=15)
 {
 int m,n,t;
 cin>>m>>n>>t;
 int **store_num=new int*[m];
 int **t_pos=new int*[t];
 for(int i=0;i<m;i++)
 {
 store_num[i]=new int[n];
 }
 for(int i=0;i<m;i++)
 {
 for(int j=0;j<n;j++)
 {
 store_num[i][j]=0;
 }
 }
 for(int i=0;i<t;i++)
 {
 t_pos[i]=new int[4];
 }
 for(int i=0;i<t;i++)
 {
 for(int j=0;j<4;j++)
 {
 t_pos[i][j]=0;
 }
 }
 for(int i=0;i<m;i++)
 {
 for(int j=0;j<n;j++)
 {
 cin>>store_num[i][j];
 }
 }
 for(int i=0;i<t;i++)
 {
 for(int j=0;j<4;j++)
 {
 cin>>t_pos[i][j];
 }
 }
 int score=0;
 for(int i=0;i<t;i++)
 {
 if(CheckRemove(t_pos[i][0],t_pos[i][1],t_pos[i][2],t_pos[i][3],m,n,&store_num))
 {
 score++;
 }
 }
 cout<<score<<endl;
 Num++;
 }
 return 0;
}
bool CheckRemove(int x1,int y1,int x2,int y2,int rows,int cols,int ***pArray)
{
 
 int m1=x1-1;int n1=y1-1;
 int m2=x2-1;int n2=y2-1;
 if((*pArray)[m1][n1]!=(*pArray)[m2][n2])
 {
 return false;
 }
 if(m1==m2&&(m1==0||m1==rows-1))
 {
 (*pArray)[m1][n1]=0;
 (*pArray)[m2][n2]=0;
 return true;
 }
 if(n1==n2&&(n1==0||n1==cols-1))
 {
 (*pArray)[m1][n1]=0;
 (*pArray)[m2][n2]=0;
 return true;
 }
 vector<point>v_point;
 point p_in;
 int **pArray_incre=new int*[rows+2];
 for(int i=0;i<rows+2;i++)
 {
 pArray_incre[i]=new int [cols+2];
 }
 for(int i=0;i<rows+2;i++)
 {
 for(int j=0;j<cols+2;j++)
 {
 pArray_incre[i][j]=0;
 }
 }
 for(int i=1;i<rows+1;i++)
 {
 for(int j=1;j<cols+1;j++)
 {
 pArray_incre[i][j]=(*pArray)[i-1][j-1];
 }
 }
 for(int y=y1+1;y<cols+2;y++)
 {
 if(pArray_incre[x1][y]!=0)
 {
 break;
 }
 p_in.x=x1;
 p_in.y=y;
 v_point.push_back(p_in);
 }
 for(int y=0;y<y1;y++)
 {
 if(pArray_incre[x1][y]!=0)
 {
 break;
 }
 p_in.x=x1;
 p_in.y=y;
 v_point.push_back(p_in);
 }
 for(int y=y2+1;y<cols+2;y++)
 {
 if(pArray_incre[x2][y]!=0)
 {
 break;
 }
 p_in.x=x2;
 p_in.y=y;
 v_point.push_back(p_in);
 }
 for(int y=0;y<y2;y++)
 {
 if(pArray_incre[x2][y]!=0)
 {
 break;
 }
 p_in.x=x2;
 p_in.y=y;
 v_point.push_back(p_in);
 }
 for(int i=0;i<(int)v_point.size();i++)
 {
 for(int j=0;j<(int)v_point.size();j++)
 {
 if(j!=i)
 {
 if(v_point[i].y==v_point[j].y)
 {
 int yy=v_point[i].y;
 int xx1=v_point[i].x;
 int xx2=v_point[j].x;
 if(xx1>xx2)
 Swap(xx1,xx2);
 int num=xx2-xx1+1;
 int count=0;
 for(int h=xx1;h<=xx2;h++)
 {
 if(pArray_incre[h][yy]==0)
 {
 count++;
 }
 }
 if(count==num)
 {
 (*pArray)[x1-1][y1-1]=0;
 (*pArray)[x2-1][y2-1]=0;
 v_point.empty();
 return true;
 }
 }
 }
 }
 }
 v_point.empty();
 for(int x=x1+1;x<rows+2;x++)
 {
 if(pArray_incre[x][y1]!=0)
 {
 break;
 }
 p_in.x=x;
 p_in.y=y1;
 v_point.push_back(p_in);
 }
 for(int x=0;x<x1;x++)
 {
 if(pArray_incre[x][y1]!=0)
 {
 break;
 }
 p_in.x=x;
 p_in.y=y1;
 v_point.push_back(p_in);
 }
 for(int x=x2+1;x<rows+2;x++)
 {
 if(pArray_incre[x][y2]!=0)
 {
 break;
 }
 p_in.x=x;
 p_in.y=y2;
 v_point.push_back(p_in);
 }
 for(int x=0;x<x2;x++)
 {
 if(pArray_incre[x][y2]!=0)
 {
 break;
 }
 p_in.x=x;
 p_in.y=y2;
 v_point.push_back(p_in);
 }
 for(int i=0;i<(int)v_point.size();i++)
 {
 for(int j=0;j<(int)v_point.size();j++)
 {
 if(j!=i)
 {
 if(v_point[i].x==v_point[j].x)
 {
 int xx=v_point[i].x;
 int yy1=v_point[i].y;
 int yy2=v_point[j].y;
 if(yy1>yy2)
 Swap(yy1,yy2);
 int num=yy2-yy1+1;
 int count=0;
 for(int h=yy1;h<=yy2;h++)
 {
 if(pArray_incre[xx][h]==0)
 {
 count++;
 }
 }
 if(count==num)
 {
 (*pArray)[x1-1][y1-1]=0;
 (*pArray)[x2-1][y2-1]=0;
 v_point.empty();
 return true;
 }
 }
 }
 }
 }
 
 
 return false;
}
void Swap(int &a,int &b)
{
 int tmp;
 tmp=a;
 a=b;
 b=tmp;
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/zhaoyading/article/details/45721201