반응형
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
|
#include<iostream>
#include<algorithm>
#include<string.h>
using namespace std;
int N,L;
int A[100][100];
int Solve(){
int cnt = 0;
bool check1[100];
bool check2[100];
//행검사
for(int i=0;i<N;i++){
//경사로 깔면서 끝까지 갈 수 있는지?
//bool check1[100];
memset(check1,false,N);
for(int j=0;j<N;j++){
if(j==N-1) {
++cnt;
//cout<<i<<"행 성공\n";
}
else if(A[i][j] == A[i][j+1]) continue;
else if(A[i][j]+1 == A[i][j+1]){
// 0보다는 커야한다.
if(j-L+1 <0) break;
//j부터 j-L+1 까지가 평지인지
//j부터 j-L+1 까지 경사로를 설치 안했는지
bool isout =false;;
for(int k=j-L+1;k<=j;k++){
if(check1[k] == true){
isout = true;
break;
}
if(A[i][k] != A[i][j]){
isout = true;
break;
}
}
if(isout) break;
for(int k=j-L+1;k<=j;k++){
check1[k] = true;
}
}
else if(A[i][j] == A[i][j+1]+1){
//j+L <N 보단 작아야한다.
if(j+L >= N) break;
bool isout =false;
//j+1 부터 j+L 까지 평지인지
//j+1 부터 j+L 까지 경사로가 있는지
for(int k=j+1;k<=j+L;k++){
if(check1[k] == true){
isout = true;
break;
}
if(A[i][k] != A[i][j+1]){
isout =true;
break;
}
}
if(isout) break;
for(int k=j+1;k<=j+L;k++){
check1[k] =true;
}
}else{
break;
}
}
}
//열검사
for(int i=0;i<N;i++){
//경사로 깔면서 끝까지 갈 수 있는지?
//bool check2[100];
memset(check2,false,N);
for(int j=0;j<N;j++){
if(j==N-1) {
//cout<<i<<"열 성공\n";
++cnt;
}
else if(A[j][i] == A[j+1][i]) continue;
else if(A[j][i] +1 == A[j+1][i]){
// 0보다는 커야한다.
if(j-L+1 <0) break;
//j부터 j-L+1 까지가 평지인지
//j부터 j-L+1 까지 경사로를 설치 안했는지
bool isout = false;
for(int k=j-L+1;k<=j;k++){
if(check2[k] == true){
isout = true;
break;
}
if(A[k][i] != A[j][i]){
isout = true;
break;
}
}
if(isout) break;
for(int k=j-L+1;k<=j;k++){
check2[k] = true;
}
}
else if(A[j][i] == A[j+1][i]+1){
//j+L <N 보단 작아야한다.
if(j+L >= N) break;
bool isout = false;
//j+1 부터 j+L 까지 평지인지
//j+1 부터 j+L 까지 경사로가 있는지
for(int k=j+1;k<=j+L;k++){
if(check2[k] == true){
isout = true;
break;
}
if(A[k][i] != A[j+1][i]){
isout =true;
break;
}
}
if(isout) break;
for(int k=j+1;k<=j+L;k++){
check2[k] =true;
}
}else{
break;
}
}
}
return cnt;
}
int main(){
cin>>N>>L;
for(int i=0;i<N;i++){
for(int j=0;j<N;j++){
cin>>A[i][j];
}
}
cout<<Solve();
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|
반응형
'ProgramSoliving' 카테고리의 다른 글
백준 : 17779 (0) | 2020.01.12 |
---|---|
백준 : 14891 (0) | 2020.01.12 |
백준 : 16234 * (0) | 2020.01.11 |
백준 : 9251 (0) | 2020.01.01 |
백준 : 3055 (0) | 2020.01.01 |