728x90

0. 주어진 문제 

시간 제한메모리 제한제출정답맞은 사람정답 비율
2 초128 MB3101211082883836.415%

문제

알파벳 대소문자로 된 단어가 주어지면, 이 단어에서 가장 많이 사용된 알파벳이 무엇인지 알아내는 프로그램을 작성하시오. 단, 대문자와 소문자를 구분하지 않는다.

입력

첫째 줄에 알파벳 대소문자로 이루어진 단어가 주어진다. 주어지는 단어의 길이는 1,000,000을 넘지 않는다.

출력

첫째 줄에 이 단어에서 가장 많이 사용된 알파벳을 대문자로 출력한다. 단, 가장 많이 사용된 알파벳이 여러 개 존재하는 경우에는 ?를 출력한다.




  1. 풀이


문제를 풀때 계속 시간초과가 되서 string으로 바꾸어 구현해보았다.

char을 int형으로 변환하여 비교하는 부분이 오래 걸렸던 것일까?

고민을 해봐야되겠다.




  2. 소스코드


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
#include<iostream>
#include<string>
 
int main() {
    std::string input;
    std::cin>>input;
    std::string alphabet="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
    int count[26]={0,};
    //만약 input이 char 배열이었다면, strlen(input)
    for(int t=0;t<input.size();t++){
        for(int i=0;i<26;i++){
            if(input[t]==alphabet[i]||input[t]==alphabet[i+26]){
                count[i]++;
            }
            
        }
    }
    
    int find_largest(0);
    int error(0);
    for(int i=1;i<26;i++){
        if(count[find_largest]<count[i]){
            find_largest = i;
            error=0;
        }
        else if(count[find_largest]==count[i]){
            error = 1;
        }
    }
        
    if(error) std::cout<<"?\n";
    else std::cout<<alphabet[find_largest]<<"\n";
}

cs



  3. 문제 출처


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


  4. 참고






+ Recent posts