본문 바로가기

BOJ/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
#include <iostream>
#include <vector>
#define MAXX 21
using namespace std;
 
int map[MAXX][MAXX];
int dx[4= {0111}, dy[4= {1-101};
int cdx[4= {0-1-1-1}, cdy[4= {-110-1};
bool visited[MAXX][MAXX];
 
typedef pair<intint> pp;
vector<pp> omok;
 
void check()
{
    bool flag = false;
 
    for (auto now : omok)
    {
        int i = now.first;
        int j = now.second;
 
        //바둑알이 있으면
        int color = map[i][j];
        //5개만큼만 연속되어야 한다.
 
        for (int d = 0; d < 4; d++)
        {
            int cnt = 1;
            int nx = i + dx[d];
            int ny = j + dy[d];
 
            while (!(nx < 1 || nx >= 20 || ny < 1 || ny >=20 || map[nx][ny] != color ))
            {
                cnt++;
                if (cnt > 5)
                    break;
            
                nx += dx[d];
                ny += dy[d];
            }
            //이 전 방향으로 반복되는 것이 있는지 확인한다
 
            if (cnt > 5)
                continue;
 
            //정반대 방향에 연속되는 바둑돌이 있는지 확인한다.
            if (cnt == 5)
            {
                nx = i + cdx[d];
                ny = j + cdy[d];
 
                if (map[nx][ny] == color) continue;
            }
 
            if (cnt == 5)
            {
                //지금 컬러가 이겼음
                flag = true;
                cout << color << '\n';
                int resX = i, resY = j;
                if (d==1) {
                    resX = i >= i + dx[d] * 4 ? i : i + dx[d] * 4;
                    resY = j >= j + dy[d] * 4 ? j + dy[d] * 4 : j;
                }
                
                cout << resX << " " << resY << '\n';
                break;
            }
        }
 
        if (flag)
            break;
    }
 
    if (!flag)
    {
        cout << 0 << '\n';
    }
}
int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(0);
 
    for (int i = 1; i <= 19; i++)
    {
        for (int j = 1; j <= 19; j++)
        {
            cin >> map[i][j];
            if (map[i][j])
                omok.push_back(pp(i, j));
        }
    }
    if (omok.size() == 0cout << 0 << '\n';
    else
        check();
 
    return 0;
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter

'BOJ > C++' 카테고리의 다른 글

가장 긴 증가하는 부분 수열5  (0) 2020.02.13
가장 큰 정사각형  (0) 2020.02.13
k번째 최단경로  (0) 2020.02.12
거의 최단 경로  (0) 2020.02.12
단절선  (0) 2020.02.11