01-10 14:41
Recent Posts
Recent Comments
관리 메뉴

너와나의 관심사

백준 [BOJ] 14599 본문

카테고리 없음

백준 [BOJ] 14599

벤치마킹 2019. 8. 11. 18:26

백준 14599 번 문제는 테트리스 도형에서 가장 많은 줄을 ..없애는 숫자를 찾는 문제로 구현문제이다 

좀 까다로웠던 부분은 테트리스 문제에서 도형을 각각 좌표로 표시 하고 BFS 를 이용해서 도형의 배치가 가능한 좌표를 queue 에 넣어주는 방식으로 풀이를 했따 



https://www.acmicpc.net/problem/14599



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
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
#include <stdio.h>
#include <iostream>
#include <memory.h>
 
using namespace std;
#define START = 0;
 
const int ITEM_NUM = 4 + 9 + 4;
 
struct pos{
 
    int x;
    int y;
 
    int type;
 
}Pos[100001];
 
 
struct pos ChkVal[ITEM_NUM];
 
int answer = 0;
//x 도 y 도 모두 .. +  방향만으로 이동가능 ..//
 
int dx[] = { 1-100 };
int dy[] = { 001-1 };
 
 
 
//순서대로 
//  - -  - -  |   - -   | 
//  |      |  |  |   ]  | -
//  |      |  |   _ _   |
//  |      |  |
 
 
int sx[7 + 9 + 4][4= { { 0100 }, { 0111 }, { 0110 }, { 0000 }, { 0010 }, { 0011 }, { 00-1-1 },
 
//추가                                        L//                                            /ㄱ    ㅡ           // ㅗ                ㅓ             ㅜ                ^z                                 z 
0012 }, { 000-1 }, { 0122 }, { 0120}, { 0001 }, { 00-1-2 }, { 0123}, { 0-101 }, { 0-100 }, { 0112 }, 
010-1 }, { 00-1-1 }, { 0112 }
 
};
 
int sy[7 + 9 + 4][4= { { 0012 }, { 0012 }, { 0011 }, { 0123 }, { 0112 }, { 0112 }, { 0112 },
//추가                                                                                                                                                                                
0111 }, { 0122 }, { 0001 }, { 0001}, { 0122 }, { 0111 }, { 000 ,0 }, { 0111 }, { 0112 } , { 0010 },
00 ,11 }, { 0112 }, { 0011 }
};
 
//int sx[7][3] = { { 0, 0, 1 }, { 0, 0, -1 }, { 0, 1, 1 }, {0, 0, 0 }, { 0, 1, 0 }, { 0, 1, 1 },    { 0, -1, -1} };
//int sy[7][3] = { { 1, 2, 2 }, { 1, 2, 2 }, { 1, 1, 0 }, { 1, 2, 3 }, { 1, 1, 2 }, { 1, 1, 2 },    { 1,  1, 2} };
 
 
char arr[21][11];
char buf[7][21][11];
 
bool visit[ITEM_NUM][21][11];
int Cnt = 0;
 
#define MAX_N 500001
 
int N, M;
int front;
int rear;
int queue[MAX_N];
 
void queueInit(void)
{
    front = 0;
    rear = 0;
}
 
 
bool chk1(int x, int y){
 
    if (x < 0 || y < 0 || x > 9 || y > 19)
        return false;
 
    if (arr[y][x] == '1')
        return false;
 
    return true;
}
 
bool chk2(int x, int y){
 
    if (x < 0 || y < 0 || x > 9 || y > 19)
        return false;
 
 
    return true;
 
}
 
 
int queueIsEmpty(void)
{
    return (front == rear);
}
 
int queueIsFull(void)
{
    if ((front + 1) % MAX_N == rear)
    {
        return 1;
    }
    else
    {
        return 0;
    }
}
 
int queueEnqueue(int value)
{
    if (queueIsFull())
    {
        printf("queue is full!");
        return 0;
    }
    queue[front= value;
    front++;
    if (front == MAX_N)
    {
        front = 0;
    }
 
    return 1;
}
 
int queueDequeue(int *value)
{
    if (queueIsEmpty())
    {
        printf("queue is empty!");
        return 0;
    }
    *value = queue[rear];
    rear++;
    if (rear == MAX_N)
    {
        rear = 0;
    }
    return 1;
}
 
 
void copy(char **src, char **dst){
 
    for (int i = 0; i < 20; i++)
    for (int j = 0; j < 10; j++)
        dst[i][j] = src[i][j];
}
 
void Push(int x, int y, int type){
 
    Pos[Cnt].x = x;
    Pos[Cnt].y = y;
    Pos[Cnt].type = type;
 
    queueEnqueue(Cnt);
    Cnt++;
}
 
void DBGPrint(int type){
    
    cout << "도형 Type " << type << endl;
 
    for (int i = 0; i < 20; i++){
        for (int j = 0; j < 10; j++){
            cout << arr[i][j];
        }cout << endl;
    }
 
    
 
    cout << endl;
}
 
 
int calc(void){
 
    int ret = 0;
 
    for (int i = 0; i < 20; i++){
        int cnt = 0;
        for (int j = 0; j < 10; j++){
 
            if (arr[i][j] == '1')
                cnt++;
            else
                break;
        }
 
        if (cnt == 10)
            ret++;
    }
 
    return ret;
}
 
 
 
void Fill(int x, int y, int type){
 
    //arr[y][x] = '1';
 
    for (int k = 0; k < 4; k++){
 
        int nx = x + sx[type][k];
        int ny = y + sy[type][k];
 
 
        //if (!chk1(nx, ny))
        //cout <<  "Error Fill" << endl;
 
        arr[ny][nx] = '1';
    }
}
 
 
void UnFill(int x, int y, int type){
 
    //arr[y][x] = '0';
 
    for (int k = 0; k < 4; k++){
 
        int nx = x + sx[type][k];
        int ny = y + sy[type][k];
 
        arr[ny][nx] = '0';
    }
}
 
void solve(int type){
 
    int x, y;
    int ox, oy;
 
    while (!queueIsEmpty()){
 
        int val;
        queueDequeue(&val);
 
        ox = Pos[val].x;
        oy = Pos[val].y;
        type = Pos[val].type;
        int cnt = 0;
 
        cnt = 0;
        x = ox + 1;
        y = oy;
 
        if (0 <= x && x <10 && !visit[type][y][x]){
 
            visit[type][y][x] = true;
 
            for (int k = 0; k < 4; k++){
 
                int nx = x + sx[type][k];
                int ny = y + sy[type][k];
 
                if (chk1(nx, ny))
                    cnt++;
                else
                    break;
 
            }
 
            if (cnt == 4){
 
                //ChkVal[type].x = x;
                //ChkVal[type].y = y;
                Push(x, y, type);
            }
        }
 
 
 
        cnt = 0;
        x = ox - 1;
        y = oy;
 
        if (0 <= x && x <10 && !visit[type][y][x]){
 
            visit[type][y][x] = true;
 
            for (int k = 0; k < 4; k++){
 
                int nx = x + sx[type][k];
                int ny = y + sy[type][k];
 
                if (chk1(nx, ny))
                    cnt++;
                else
                    break;
 
            }
 
            if (cnt == 4){
                Push(x, y, type);
            }
        }
 
 
 
        x = ox;
        y = oy + 1;
        cnt = 0;
 
        if (0 <= y && y <20 && !visit[type][y][x]){
            visit[type][y][x] = true;
 
            for (int k = 0; k < 4; k++){
 
                int nx = x + sx[type][k];
                int ny = y + sy[type][k];
 
                if (chk1(nx, ny))
                    cnt++;
                else
                    break;
 
            }
 
            if (cnt == 4){
 
                //if (ChkVal[type].y < y)
                {
 
                    ChkVal[type].x = x;
                    ChkVal[type].y = y;
                }
 
                Push(x, y, type);
            }
 
        }
 
 
    }
}
 
int main(void) {
 
    ios_base::sync_with_stdio(false);
    cin.tie(0);
 
    freopen("input.txt""r", stdin); setbuf(stdout, NULL);
 
 
    queueInit();
 
    memset(visit, falsesizeof(visit));
 
 
 
    for (int i = 0; i < 20; i++){
        for (int j = 0; j < 10; j++){
 
            cin >> arr[i][j];
 
            //처음에는 -1 로 설정 //
            //if ( i == 0 && arr[i][j] == '0' ){
            //    Push(j, i, -1);
            //}
        }
    }
 
#if 0 
    for (int k = 0; k < 7 + 9; k++)
    for (int i = 0; i < 20; i++)
    for (int j = 0; j < 10; j++)
        buf[k][i][j] = arr[i][j];
 
#endif 
 
 
    for (int k = 0; k < 7 + 9 + 4; k++){
 
        for (int j = 0; j < 10; j++){
            if (arr[0][j] == '0')
                Push(j, 0, k);
        }
 
        solve(k);
 
 
    }
 
 
    int ans = 0;
    int x, y;
 
    for (int k = 0; k < 7 + 9 + 4; k++)
    {
 
        x = ChkVal[k].x;
        y = ChkVal[k].y;
 
        //cout << "x => [" << x << " ]" << "y => [" << y << " ]" << endl;
 
        Fill(x, y, k);
 
        int ret = calc();
        ans = ret > ans ? ret : ans;
 
//        if (ret > 0)
    //        DBGPrint(k);
 
        UnFill(x, y, k);
 
    }
 
    cout << ans << "\n";
 
 
 
    return 0;
}
 
cs



Comments