Notice
Recent Posts
Recent Comments
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 |
Tags
- 재귀
- Unreal Engine 5
- 자료구조
- 투 포인터
- 스택
- 다익스트라
- 구현
- 다이나믹 프로그래밍
- 누적 합
- 알고리즘
- BFS
- 유니티
- 유니온 파인드
- VR
- XR Interaction Toolkit
- 그리디 알고리즘
- 트리
- ue5
- 그래프
- 시뮬레이션
- c++
- 백준
- Team Fortress 2
- 문자열
- 정렬
- 브루트포스
- 수학
- 우선순위 큐
- 백트래킹
- DFS
Archives
- Today
- Total
1일1알
백준 1051번 숫자 정사각형 C++ 본문
간단한 브루트포스 문제이다. 모든 칸을 돌면서 오른쪽, 아래쪽으로만 검사하면서 정사각형이 되는지 확인하고 크기가 커질때마다 크기를 갱신해주었다.
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <unordered_set>
using namespace std;
typedef long long ll;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int n, m;
cin >> n >> m;
string str;
vector<vector<int>> v(n, vector<int>(m));
for (int i = 0; i < n; i++) {
cin >> str;
for (int j = 0; j < m; j++) {
v[i][j] = str[j]-'0';
}
}
int max = 0;
for (int i = 0; i < n; i++) {
for (int j = 0; j < m; j++) {
int size = 1;
int currVal = v[i][j];
while (1) {
if (i + size >= n || j + size >= m) break;
if (v[i][j + size] == currVal && v[i + size][j] == currVal && v[i + size][j + size] == currVal) {
if (size > max) {
max = size;
}
}
size++;
}
}
}
cout << (max + 1) * (max + 1);
};
'알고리즘' 카테고리의 다른 글
백준 11052번 카드 구매하기 C++ (0) | 2021.10.23 |
---|---|
백준 17070번 파이프 옮기기 1 C++ (0) | 2021.10.22 |
백준 12851번 숨바꼭질2 C++ (0) | 2021.10.20 |
백준 16953번 A->B (C++) (0) | 2021.10.19 |
백준 11660번 구간 합 구하기 5 C++ (0) | 2021.10.18 |