기술 블로그

14890번 경사로 본문

알고리즘 문제/BOJ

14890번 경사로

parkit 2018. 9. 8. 21:50
728x90
반응형

삼성 SW 역량 테스트 기출문제이다.


어려웠었다.


나는 행과 열도 서로 겹치는 부분을 어떻게 생각해야할지 몰라서 다른 분의 코드를 보았다.


그런데, 정답 코드들도 보니, 행과 열은 서로 안 겹쳐도 되는 것 같다.


행과 열을 나누어서 생각하면 된다.


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



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
#include <iostream>
#include <queue>
#include <cstdio>
#include <vector>
#include <cstring>
#include <string>
#include <math.h>
#include <algorithm>
 
using namespace std;
 
int map[101][101= { 0, };
 
int N = 0, L = 0;
 
int check_row(int row)
{
    int ret = 0;
 
    if (row == N) return ret;
 
    bool check = true;
 
    int length = 1;
 
    for (int column = 0; column < N - 1; column++)
    {
        if (map[row][column] == map[row][column + 1])
        {
            ++length;
 
            continue;
        }
 
        if (map[row][column + 1- map[row][column] == 1)
        {
            if (length >= L)
            {
                length = 1;        
            }
            else
            {
                check = false;
 
                break;
            }    
 
            continue;
        }
 
        if (map[row][column] - map[row][column + 1== 1)
        {
            if (column + L >= N)
            {
                check = false;
 
                break;
            }
 
            for (int len = 1; len <= L; len++)
            {
                if (map[row][column + 1!= map[row][column + len])
                {
                    check = false;
 
                    break;
                }
            }
 
            if (!check) break;
 
            length = 0;
 
            column = column + L - 1;
 
            continue;
        }
 
        check = false;     
        // 2 이상 차이나는 경우는 위의 if문들에서 걸리는 것이 없고, 여기에서 걸리므로, 바로 false
 
        break;
    }
 
    if (check) ++ret;
 
    ret += check_row(row + 1);
 
    return ret;
}
 
int check_column(int column)
{
    int ret = 0;
 
    if (column >= N) return ret;
 
    bool check = true;
 
    int length = 1;
 
    for (int row = 0; row < N - 1; row++)
    {
        if (map[row][column] == map[row + 1][column])
        {
            ++length;
 
            continue;
        }
 
        if (map[row + 1][column] - map[row][column] == 1)
        {
            if (length >= L)
            {
                length = 1;            
            }
            else
            {
                check = false;
 
                break;
            }
 
            continue;
        }
 
        if (map[row][column] - map[row + 1][column] == 1)
        {
            if (row + L >= N)
            {
                check = false;
 
                break;
            }
 
            for (int len = 1; len <= L; len++)
            {
                if (map[row + len][column] != map[row + 1][column])
                {
                    check = false;
 
                    break;
                }
            }
 
            if (!check) break;
 
            length = 0;
 
            row = row + L - 1;
 
            continue;
        }
 
        check = false;
        // 2 이상 차이나는 경우는 위의 if문들에서 걸리는 것이 없고, 여기에서 걸리므로, 바로 false
 
        break;
    }
 
    if (check) ++ret;
 
    ret += check_column(column + 1);
 
    return ret;
}
 
int main(void)
{
    int result = 0;
 
    scanf("%d %d"&N, &L);
 
    for (int i = 0; i < N; i++)
    {
        for (int j = 0; j < N; j++)
        {
            scanf("%d"&map[i][j]);
        }
    }
 
    result = check_row(0+ check_column(0);
 
    printf("%d\n", result);
    
    return 0;
}
cs



728x90
반응형

'알고리즘 문제 > BOJ' 카테고리의 다른 글

1654번 랜선 자르기  (0) 2018.09.15
10845번 큐  (0) 2018.09.15
1941번 소문난 칠공주  (0) 2018.09.06
1613번 역사  (0) 2018.09.05
2146번 다리 만들기  (0) 2018.09.04