일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 세브란스
- c++
- 분할정복
- ChatGPT
- 코테
- 카카오인턴십
- 스택
- 프로그래머스
- 부주상골수술후기
- 부주상골
- 부주상골증후군
- 독일어독학
- 구현
- sql
- 카카오코테
- dp
- istringstream
- SWIFT
- 독일어
- 백준
- DFS
- 독학
- 코딩테스트
- BFS
- 부주상골수술
- IOS
- 카카오인턴
- SQLD
- 롯데정보통신
- 리눅스
Archives
- Today
- Total
슈뢰딩거의 고등어
[BOJ] 17140 이차원 배열과 연산 본문
https://www.acmicpc.net/problem/17140
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int map[1000][1000];
int r, c, k;
int max_x, max_y;
int res;
bool compare(pair <int, int> a, pair<int, int> b) {
if(a.second == b.second) {
return a.first < b.first;
}
return a.second < b.second;
}
vector <int> counting(vector <int> v) {
vector <pair <int, int>> nv;
sort(v.begin(), v.end());
int cnt = 1;
for(int i=0; i<v.size()-1; i++) {
if(v[i] == 0)
continue;
if(v[i] != v[i+1]) {
nv.push_back(make_pair(v[i], cnt));
cnt = 1;
}
else {
cnt++;
}
}
nv.push_back(make_pair(v[v.size()-1], cnt));
sort(nv.begin(), nv.end(), compare);
vector <int> ret;
for(auto n: nv) {
ret.push_back(n.first);
ret.push_back(n.second);
}
return ret;
}
void R() {
for(int y=0; y<max_y; y++) {
vector <int> v;
for(int x =0; x<max_x; x++) {
v.push_back(map[y][x]);
}
v = counting(v);
if(v.size() > max_x)
max_x = v.size();
for(int i=0; i<max_x; i++) {
if(i >= v.size())
map[y][i] = 0;
else
map[y][i] = v[i];
}
}
}
void C() {
for(int x=0; x<max_x; x++) {
vector <int> v;
for(int y =0; y<max_y; y++) {
v.push_back(map[y][x]);
}
v = counting(v);
if(v.size() > max_y)
max_y = v.size();
for(int i=0; i<max_y; i++) {
if(i >= v.size())
map[i][x] = 0;
else
map[i][x] = v[i];
}
}
}
void solve() {
if(max_y >= max_x)
R();
else
C();
}
int main() {
scanf("%d %d %d", &r, &c, &k);
r--; c--;
for(int i=0; i<3; i++) {
for(int j=0; j<3; j++)
scanf("%d", &map[i][j]);
}
max_x = 3; max_y = 3;
while(map[r][c] != k) {
res++;
solve();
if(res > 100)
break;
}
if(res > 100)
printf("-1\n");
else
printf("%d\n", res);
}
생각해야 할 것은 수 별로 카운팅하는 함수인 counting
vector 와 map 을 같이 생각하기
'알고리즘' 카테고리의 다른 글
[BOJ] 17779 게리맨더링 2 (c++) (0) | 2022.01.13 |
---|---|
[BOJ] 17822 원판돌리기 (c++) (0) | 2022.01.13 |
[BOJ] 15684 사다리타기 (c++) (0) | 2022.01.09 |
[BOJ] 21610 마법사 상어와 비바라기 (C++) (0) | 2022.01.07 |
[BOJ] 16234 인구이동 (C++) (0) | 2022.01.05 |
Comments