1258 행렬찾기


1. 0이 아닌점을찾아 행과 열의 갯수를 구한다.


2. 해당하는 행렬 0으로 바꿔준다.


3. Node 구조체를 이용하여 행과열에 대한 정보를 벡터에 저장한다.


4. 문제에서 주어진 조건대로 정렬한후 출력한다.


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
#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
 
struct Node {
    int r, c, mul;
    Node(int r, int c, int mul) :r(r), c(c), mul(mul){}
};
 
int t, n;
int map[100][100];
int dx[] = { 0,0,1,-1 };
int dy[] = { 1,-1,0,0 };
 
void dfs(int x, int y) {
    map[x][y] = 0;
    for (int i = 0; i < 4; i++) {
        int ax = x + dx[i];
        int ay = y + dy[i];
        if (ax >= 0 && ay >= 0 && ax < n && ay < n && map[ax][ay] != 0) {
            dfs(ax, ay);
        }
    }
}
 
int compare_node(const Node &a, const Node &b) {
    if (a.mul == b.mul) {
        return a.r < b.r;
    }
    return a.mul < b.mul;
}
 
int main() {
    scanf("%d"&t);
    for (int tc = 1; tc <= t; tc++) {
        scanf("%d"&n);
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < n; j++) {
                scanf("%d"&map[i][j]);
            }
        }
 
        vector<Node> v;
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < n; j++) {
                if (map[i][j] != 0) {
                    int row_cnt = 1;
                    int col_cnt = 1;
                    int k = i + 1;
                    while (true) {
                        if (k >= 100 || map[k][j]==0break;
                        if (map[k][j] != 0) {
                            k++;
                            row_cnt++;
                        }
                    }
                    k = j + 1;
                    while (true) {
                        if (k >= 100 || map[i][k] == 0break;
                        if (map[i][k] != 0) {
                            k++;
                            col_cnt++;
                        }
                    }
                    dfs(i, j);
                    v.push_back(Node(row_cnt, col_cnt,row_cnt*col_cnt));
                }
            }
        }
 
        sort(v.begin(), v.end(), compare_node);
 
        printf("#%d %d ", tc, v.size());
        for (int i = 0; i < v.size(); i++) {
            printf("%d %d ", v[i].r, v[i].c);
        }
        printf("\n");
    }
}
cs


'SWEA::문제풀이' 카테고리의 다른 글

4008 숫자 만들기  (0) 2018.03.22
4012 요리사  (2) 2018.03.17
1252 하나로  (0) 2018.02.25
3143 가장 빠른 문자열 타이핑  (0) 2018.02.24
1767 프로세서 연결하기  (1) 2018.02.24

+ Recent posts