[BOJ]14890 경사로

시뮬레이션 예제

Posted by kyoungIn on April 9, 2019

경사로

링크

풀이

하드코딩….^^;

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
#include <iostream>
#include <vector>
using namespace std;
int n,l;
int res=0;
void cal(vector<vector<int>> &map){
    int check[101][101]={0};
    for(int i=0;i<n;i++){
        int f=0;
        
        for(int j=0;j<n-1;j++){
            if(map[i][j] == map[i][j+1])//같은 경사면 갈 수 있음.
                continue;
            
            else if(map[i][j]+1 == map[i][j+1]){ //오르막
                if( j+1-l>=0){
                    for(int tmp=j;tmp>j-l;tmp--){
                        if((map[i][j]!=map[i][tmp]) || check[i][tmp]!=0){
                            f=1;
                            break;
                        }
                    }
                    if(f==1)
                        break;
                    else
                        check[i][j]=1;
                }
                else{
                    f=1;
                    break;
                }
            }
            else if(map[i][j]-1 == map[i][j+1]){ //내리막
                if(j+l<n){ //(j+1)+(l-1) < n
                    for(int tmp=j+1;tmp<j+1+l;tmp++){
                        if((map[i][j+1]!=map[i][tmp]) || check[i][tmp]!=0){
                            f=1;
                            break;
                        }
                    }
                    if(f==1)
                        break;
                    else{
                        check[i][j+l]=1;
                        j=j+l-1;
                    }
                }
                else{
                    f=1;
                    break;
                }
            }
            else{
                f=1;
                break;
            }
        }
        if(f==0){
                res++;
        }
    }
}
int main(){
    vector<vector<int>> map,temp;
    cin >> n >> l;
    map.resize(n);
    for(int i=0;i<n;i++){
        map[i].resize(n);
        for(int j=0;j<n;j++){
            cin >> map[i][j];
        }
    }
    temp=map;
    cal(map);
    for(int i=0;i<n;i++)
        for(int j=0;j<n;j++)
            temp[j][n-1-i]=map[i][j];
    cal(temp);
    
    
    cout << res <<endl;
}