본문 바로가기

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
#include <iostream>
#include <vector>
#include <cstring>
 
using namespace std;
 
bool visited[1001][1001];
int n;
 
bool check(int x, int y) {
    cout << "debug " << x << " " << y << '\n';
    while(1) {
        x--;
        y--;
        cout << "debug " << x << " " << y << '\n';
 
        if (x <= 0 || y <= 0) {
            if (x == 0 && y == 1return true;
            if (x == 1 && y == 0return true;
        }
        cout << "debug " << x << " " << y << '\n';
        if (visited[x][y]) return false;
    }
    return true;
}
int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(0);
 
    int t;
    cin >> t;
 
    while (t--) {
 
        cin >> n;
 
        //[1,0], [1,1], [0,1]은 무조건 볼 수 있다. 
        //그 외에 볼 수 있는 지점 중 대각선에 있는 점들은 모두 볼 수 없다. 
        //[1, 0], [0,1]뒤의 점들은 볼 수 없다. 
        memset(visited, 0sizeof(visited));
 
        for (int i = 0; i <= n; i++) {
            for (int j = 0; j <= n; j++) {
                if (visited[i][j]) continue;
                if (i == 0 && j == 0) {
                    
                    continue;
                }
                else if (i == 0 ) {
                    //하나가 0이랑 직선으로 이루어지면 
                    if (j == 1) {
                        visited[i][j] = true;
                        continue;
                    }
                    else {
                        visited[i][j] = false;
                        continue;
                    }
                }
                else if (j == 0) {
                    if (i == 1) {
                        visited[i][j] = true;
                        continue;
                    }
                    else {
                        visited[i][j] = false;
                        continue;
                    }
                    
                }
 
                //이제 [0,0]에서 볼 수 있는 점들은 그 뒤 대각선들은 모두 볼 수 없다. 
                if (check(i, j)) {
                    cout << "debug success " << i << " " << j << '\n';
                    visited[i][j] = true
                }
                else {
                    cout << "debug fail " << i << " " << j << '\n';
                }
            }
        }
 
        int ans = 0;
        for (int i = 0; i <= n; i++) {
            for (int j = 0; j <= n; j++) {
                if (visited[i][j]) {
                    cout << "debug " << i << " " << j << '\n';
                    ans++;
                }
            }
        }
        cout << "ans = " << ans << '\n';
    }
 
    return 0;
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter

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

암호제작  (0) 2020.02.07
1  (0) 2020.02.06
서로소  (0) 2020.02.06
내려가기  (0) 2020.02.05
부분구간의 합  (0) 2020.02.05