Recent Posts
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- JanusWebRTC
- vfr video
- 자원부족
- 달인막창
- 오블완
- Spring Batch
- preemption #
- 깡돼후
- 코루틴 컨텍스트
- 겨울 부산
- Value too long for column
- kotlin
- terminal
- PersistenceContext
- 코루틴 빌더
- mp4fpsmod
- tolerated
- JanusWebRTCServer
- 티스토리챌린지
- pytest
- python
- 헥사고날아키텍처 #육각형아키텍처 #유스케이스
- table not found
- VARCHAR (1)
- 개성국밥
- JanusWebRTCGateway
- k8s #kubernetes #쿠버네티스
- JanusGateway
- PytestPluginManager
- taint
Archives
너와 나의 스토리
(BOJ) 11559 Puyo Puyo 본문
반응형
문제: https://www.acmicpc.net/problem/11559
문제 풀이:
1. 터질 수 있는 뿌여 그룹 찾기 -> '.'이 아닌 점에서 bfs 돌려서 4개 이상 이어져 있으면 vector에 push
2. 현재 모양에서 터질 수 있는 뿌여 그룹을 다 찾았으면 각 그룹을 없애고 위에 것들을 끌어 내림
ㄴ> 위에서부터 작업할 수 있도록 정렬해주고 작업
3. 터뜨리고 res++ -> 한 번에 여러 그룹 터뜨리면 res는 한 번만 ++됨.
소스 코드:
typedef pair<int, int> P;
int res;
int dx[4] = { 0,1,-1,0 };
int dy[4] = { 1,0,0,-1 };
bool visit[12][6];
char arr[12][6];
vector<vector<P>> bomb;
void bfs(int x, int y);
void func() {
memset(visit, false, sizeof(visit));
bomb.clear();
for (int i = 0; i < 12; i++) {
for (int j = 0; j < 6; j++) {
if (!visit[i][j] && arr[i][j] != '.') {
bfs(i, j);
}
}
}
if (bomb.empty()) return;
for (int j = 0; j < bomb.size(); j++) {
sort(bomb[j].begin(), bomb[j].end());
for (int i = 0; i < bomb[j].size(); i++) {
int x = bomb[j][i].first;
int y = bomb[j][i].second;
for (int k = x; k > 0;k--) {
arr[k][y] = arr[k - 1][y];
}
arr[0][y] = '.';
}
}
res++;
func();
}
void bfs(int x,int y) {
char c = arr[x][y];
queue<P> q;
vector<P> v;
visit[x][y] = true;
v.push_back({x,y});
q.push({ x,y });
while (!q.empty()) {
int x1 = q.front().first;
int y1 = q.front().second;
q.pop();
for (int i = 0; i < 4; i++) {
int xx = x1 + dx[i];
int yy = y1 + dy[i];
if (xx < 0 || xx == 12 || yy < 0 || yy == 6 || visit[xx][yy] || arr[xx][yy] != c) continue;
visit[xx][yy] = true;
q.push({ xx,yy });
v.push_back({ xx,yy });
}
}
if (v.size() >= 4) bomb.push_back(v);
}
int main() {
ios::sync_with_stdio(false);
cin.tie(NULL), cout.tie(NULL);
for (int i = 0; i < 12; i++) {
for (int j = 0; j < 6; j++) {
cin >> arr[i][j];
}
}
func();
cout << res << '\n';
return 0;
}
반응형
'Algorithm > 구현' 카테고리의 다른 글
[Programmers] 2019 카카오 개발자 겨울 인턴십 - 크레인 인형뽑기 게임 (0) | 2020.05.04 |
---|---|
1770. [SW Test 샘플문제] 블록 부품 맞추기 (4) | 2019.11.07 |
[BOJ] 13567 로봇 (0) | 2019.10.04 |
(BOJ) 2933 미네랄 (0) | 2019.07.28 |
(BOJ) 1100 하얀 칸 (0) | 2019.07.21 |
Comments