-

[SWEA_모의SW역량테스트] 5653번 - 줄기세포 배양 본문

1-2. SWEA

[SWEA_모의SW역량테스트] 5653번 - 줄기세포 배양

asdklfjlasdlfkj 2020. 1. 22. 21:48

https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AWXRJ8EKe48DFAUo

 

SW Expert Academy

SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!

swexpertacademy.com

삼성 SWEA의 모의 역량문제 5653번 '줄기세포 배양'문제다.

꽤 오랜시간 헤맸던 문제인데 그 이유는 지나치게 loop를 돌아 시간초과가 떴기 때문이다.

 

결과적으로 벡터에 새로 생겨나는 세포들의 정보를 저장해두고, 중복해서 생성될 시 vector를 순회해서 동일 위치에 생명력이 더 낮은 세포가 존재한다면 그것을 지우고 (vector.erase(vector.begin()+idx)) 새롭게 추가해주었더니 시간이 매우 단축되었다 !

 

기존 테스트케이스 5개의 실행속도가 약 0.5초 조금 넘었는데 이렇게 바꾸니 0.28초로 거의 반이나 줄어들었다.

특별히 조건이 까다롭진 않았지만 그래도 지도의 범위를 유추해서 풀게하는 문제의 유형은 처음부터 생각을 좀 하게 했다. 나같은 경우에는 비활성->활성을 고려해 300초가 지나더라도 한 방향으로 최대 150칸 이동할 수 있기 때문에, 상하또는 좌우로 150칸씩, M과 N의 최대값 50을 고려해 150 + 50 + 150 = 350의 크기를 선언했다.

 

아래는 소스코드 전체.

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
#include <iostream>
#include <vector>
#define maxlen 350
using namespace std;
typedef struct cell{
    bool isEmpty;
    bool isAlive;
    int aliveTime, refreshTime, HP;
}cell;
typedef struct dir{
    int dr, dc;
}dir;
dir direction[4= { { 01 }, { 0-1 }, { 10 }, { -10 } };
cell map[maxlen][maxlen];
int N, M, K, T;
 
int main(){
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cin >> T;
    for (int tc = 0; tc < T; tc++){
        cin >> N >> M >> K;
        cell a;
        a.isEmpty = true;
        a.isAlive = false;
        a.aliveTime = -1;
        a.refreshTime = -1;
        a.HP = -1;
        for (int i = 0; i < maxlen; i++){
            for (int j = 0; j < maxlen; j++){
                map[i][j] = a;
            }
        }        
        for (int i = 150; i < 150 + N; i++){
            for (int j = 150; j < 150 + M; j++){
                int hp;
                cin >> hp;
                if (hp == 0){
                    continue;
                }
                else{
                    map[i][j].HP = hp;
                    map[i][j].isAlive = true;
                    map[i][j].isEmpty = false;
                    map[i][j].refreshTime = hp;
                    map[i][j].aliveTime = hp;
                }
            }
        }
        int time = 0;
        vector<pair<intpair<intint> > > v;
 
        while (1){
            time++;
            for (int r = 0; r < maxlen; r++){
                for (int c = 0; c < maxlen; c++){
                    if (map[r][c].isAlive){
                        if (map[r][c].refreshTime > 0){
                            map[r][c].refreshTime--;
                            continue;
                            // 살아있고 비활성 상태라면
                        }
                        else if (map[r][c].refreshTime == 0 && map[r][c].aliveTime > 0){
                            map[r][c].aliveTime--;
                            if (map[r][c].aliveTime == 0) map[r][c].isAlive = false;
                            if (map[r][c - 1].isEmpty || map[r][c + 1].isEmpty || map[r + 1][c].isEmpty || map[r - 1][c].isEmpty){
                                // 살아있고 활성상태이며 주변에 퍼질 수 있으면
                                for (int next = 0; next < 4; next++){
                                    int nr = r + direction[next].dr;
                                    int nc = c + direction[next].dc;
                                    if (map[nr][nc].isEmpty && map[nr][nc].HP < map[r][c].HP){ // 다음이 비어있고, 현재 HP가 더 크면
                                        int erase_val = map[nr][nc].HP;
                                        map[nr][nc].HP = map[r][c].HP;
                                        v.push_back(make_pair(map[r][c].HP, make_pair(nr, nc)));
                                        for (int k = 0; k < v.size(); k++){
                                            if (v[k].second.first == nr && v[k].second.second == nc && v[k].first == erase_val){
                                                    v.erase(v.begin() + k);
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        
 
            // ADD 모두 갱신하고 map도 갱신함.
            // 이제 ADD에서 isAlive인 것들 모두 map에 반영.
            for (int vidx = 0; vidx < v.size(); vidx++){
                int r = v[vidx].second.first;
                int c = v[vidx].second.second;
                int val = v[vidx].first;
                cell a;
                a.aliveTime = val;
                a.HP = val;
                a.refreshTime = val;
                a.isAlive = true;
                a.isEmpty = false;
                map[r][c] = a;
            }
            v.clear();
            if (time == K){
                int sum = 0;
                for (int r = 0; r < maxlen; r++){
                    for (int c = 0; c < maxlen; c++){
                        if (map[r][c].isAlive) sum++;
                    }
                }
                cout << "#" << tc + 1 << " " << sum << '\n';
                break;
            }
        }
    }
    return 0;
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs

Comments