[백준] 1025번. 제곱수 찾기

leeeha·2023년 10월 18일
0

백준

목록 보기
121/186
post-thumbnail
post-custom-banner

문제

https://www.acmicpc.net/problem/1025

풀이

다른 사람 풀이를 참고했는데, 코드를 내 입맛대로 약~간 수정했더니 오답을 굉.장.히!! 많이 받았던 문제이다. 그만큼 실수할 여지가 굉장히 많은 문제였다... 😣😣

코드 한줄 한줄 유의해서 살펴봐야 한다.

최대 입력 크기가 9이기 때문에 다중 for문으로 풀어도 시간 초과가 발생하지 않는다.

cf) O(N^5) → 약 59,049 (시간 제한 2초이므로 충분)

#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
#include <cmath> 
using namespace std;
typedef pair<int, int> pii;

int N, M;
vector<string> arr;
int answer = -1;

int isPerfectSquare(int num) { 
	int sqrtNum = sqrt(num); 
	if(sqrtNum * sqrtNum == num){
		return num; 
	} 
	return -1; 
}

void calcMaxPerfectSquare(int i, int j){
	// dr: 행의 공차
	for(int dr = -N + 1; dr < N; dr++){
		// dc: 열의 공차 
		for(int dc = -M + 1; dc < M; dc++){
			// 공차가 모두 0인 경우, 아래 while문에서 무한 루프 
			if(dr == 0 && dc == 0) continue; 

			// 현재 dr, dc로 나올 수 있는 모든 수열에 대해 
			// 완전 제곱수인지 검사 
			int row = i, col = j;
			string temp = "";

			while(0 <= row && row < N && 0 <= col && col < M){
				temp += arr[row][col];
				answer = max(answer, isPerfectSquare(stoi(temp)));

				row += dr; 
				col += dc; 
			}
		}
	}
}

int main(void) {
	ios::sync_with_stdio(0);
	cin.tie(0);

	cin >> N >> M;

	for(int i = 0; i < N; i++){
		string str; 
		cin >> str; 
		arr.push_back(str); 
	}

	for(int i = 0; i < N; i++){
		for(int j = 0; j < M; j++){
			calcMaxPerfectSquare(i, j);
		}
	}

	// N, M 모두 1인 경우에는 dr, dc가 0이어서 
	// while문에 진입하지 않으므로 따로 검사해준다. 
	if(N == 1 && M == 1){
		// 형변환 주의!!! 
		int num = arr[0][0] - '0'; 

		// 완전 제곱수 아니면 -1 출력 
		cout << isPerfectSquare(num); 
		
		return 0; 
	}

	cout << answer; 

	return 0;
}

후... 쉽지 않은 문제였다....

profile
습관이 될 때까지 📝
post-custom-banner

0개의 댓글