ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • 백준 3059번: 등장하지 않는 문자의 합
    문자열(String) 2018. 7. 20. 17:54
    반응형

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


    1. 문제

    알파벳 대문자로 구성되어있는 문자열 S가 주어졌을 때, S에 등장하지 않는 알파벳 대문자의 아스키 코드 값의 합을 구하는 프로그램을 작성하시오.


    문자열 S가 “ABCDEFGHIJKLMNOPQRSTUVW” 일 때, S에 등장하지 않는 알파벳 대문자는 X, Y, Z이다. X의 아스키 코드 값은 88, Y는 89, Z는 90이므로 이 아스키 코드 값의 합은 267이다.


    2. 알고리즘

    키워드 - 문자열

    접근법 - 중복되는 알파벳이 들어 올수 있다는 것에 유의 하자.


    3. 코드


    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
    #include <iostream>
    #include <sstream>
    #include <string>
    #include <algorithm>
    #include <functional>
    #include <vector>
    #include <list>
    #include <queue>
    #include <deque>
    #include <map>
    #include <set>
    #include <stack>
    #include <cstring>
    #include <math.h>
     
    using namespace std;
     
    #define MAX_SIZE 100
    #define INF 0x7fffffff
    #define CENDL "\n"
    #define ll long long
     
    int main() {
     
        cin.tie(0);
        std::ios::sync_with_stdio(false);
     
        int sum = 0;
        for (int i='A'; i<='Z'; i++) {
            sum += i;
        }
     
        int t; cin >> t;
        while(t--) {
            int cand = sum;
            string s; cin >> s;
     
            // 입력 받은 문자열에서 중복 요소를 제거 한다.
            sort(s.begin(), s.end());
            s.erase(unique(s.begin(), s.end()), s.end());
     
            const int size = s.size();
            for (int i=0; i<size; i++) {
                cand = cand - s[i];
            }
     
            cout << cand << CENDL;
        }
        return 0;
    }
     
    cs

    반응형

    댓글

Designed by Tistory.