-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1051.cpp
65 lines (56 loc) · 1.3 KB
/
1051.cpp
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
#include <string>
#include <stdio.h>
#include <math.h>
#include <iostream>
#include <vector>
#include <algorithm>
#include <map>
#include <queue>
#include <stack>
#include <climits>
#include <set>
#define p(a, b) make_pair(a, b)
#define SWAP(a, b, type) do { \
type temp; \
temp = a; \
a = b; \
b = temp; \
} while (0)
#define INF 1000000000
#define endl '\n'
#define ll long long
using namespace std;
int N,M;
char arr[50][50];
void input() {
cin>>N>>M;
for(int i=0;i<N;i++){
for(int j=0;j<M;j++){
cin>>arr[i][j];
}
}
}
void init() {
}
void solution() {
/* 숫자 하나를 정사각형으로 취급하므로 최솟값은 1이다 */
int ans=1;
/* 모든 경우를 다 돌면서 탐색 */
for(int i=0;i<N;i++){
for(int j=0;j<M;j++){
/* 정사각형을 찾으므로 N과 M중 작은 값을 골라서 돌면 된다 */
for(int k=1;k<min(N,M);k++){
if(k+i<N && k+j<M && arr[k+i][j]==arr[i][j] && arr[i][k+j]==arr[i][j] && arr[k+i][k+j]==arr[i][j]) ans=max(ans,k+1);
}
}
}
/* ans는 한 변의 길이이므로 제곱을하여 출력 */
cout<<ans*ans;
}
int main()
{
ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
input();
solution();
return 0;
}