Deff_Dev

[백준] 2607번 비슷한 단어 (C++) 본문

코딩테스트/백준

[백준] 2607번 비슷한 단어 (C++)

Deff_a 2024. 9. 26. 20:03

문제

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

 

풀이 

  1. 문자열 입력
  2. 비슷한 문자 찾기
    1. 0 번째 단어 탐색 ▶ 각 알파벳 갯수 count - 1
    2. n 번째 단어 탐색 ▶ 각 알파벳 갯수 count + 1
  3. 차이점 계산
    1. 같은 문자일 경우 ▶ 0
    2. 문자 하나 추가 or 삭제 1
    3. 문자 하나 변경 (문자 제거 + 추가)
  4. 비슷한 단어라면 결과 값 + 1
  5. 출력
#include <iostream>
#include <string>
#include <vector>
#include <cmath>

using namespace std;

bool isSimilar(string target, string word) {
    if (abs((int)target.length() - (int)word.length()) > 1) return false;

    vector<int> count(26, 0);
    for (char c : target) count[c - 'A']++;
    for (char c : word) count[c - 'A']--;

    int diff = 0;
    for (int i : count)  diff += abs(i);

    return diff <= 2;
}

int main() {
    int n;
    cin >> n;

    vector<string> words(n);
    for (int i = 0; i < n; i++) {
        cin >> words[i];
    }

    int count = 0;
    for (int i = 1; i < n; i++) {
        if (isSimilar(words[0], words[i])) 
            count++;
    }

    cout << count;
    return 0;
}

'코딩테스트 > 백준' 카테고리의 다른 글

[백준] 2252번 줄 세우기 (C++)  (0) 2024.10.16
[백준] 카드 1 (C++)  (0) 2024.10.14
[백준] 2156번 포도주 시식 (C++)  (0) 2024.09.10
[백준] 1026번 보물 (C++)  (0) 2024.09.06
[백준] 2583번 영역 구하기 (C++)  (1) 2024.09.06