ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • 백준 9324번: 진짜 메시지
    문자열(String) 2018. 7. 31. 11:03
    반응형

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


    1. 문제

    배열을 이용하여 해당 문자의 카운트가 3일때 다음 문자는 해당 문자가 나와야 한다. 나오지 않으면 FAKE


    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
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    #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 <math.h>
    #include <memory.h>
     
    using namespace std;
     
    #define MAX_SIZE 100
    #define INF 0x7fffffff
    #define CENDL "\n"
    #define ll long long
     
    char table[26];
    int main() {
     
        cin.tie(0);
        std::ios::sync_with_stdio(false);
     
        int n; cin >> n;
        while(n--) {
            string s; cin >> s;
     
            const int size = s.size();
     
            memset(table, sizeof(table));
     
            bool check = false;
            for (int i=0; i<size; i++) {
                char code = s[i] - 'A';
                table[code]++;
                if (table[code] == 3) {
     
                    // 문자가 3회 연속 나오고 다음 문자가 해당 문자가 아닌 경우
                    if (i + < size && s[i] != s[i+1]) {
                        check = true;
                        break;
                    // 문자가 3회 연속 나오고 다음 문자가 해당 문자 인 경우 table[code] 를 -1 로 초기화
                    } else if (i + < size && s[i] == s[i+1]) {
                        table[code] = -1;
                    // 문자가 3회 연속 나오고 문자의 끝 인경우 
                    } else if (i + >= size) {
                        check = true;
                        break;
                    }
                }
            }
     
            if (check) {
                cout << "FAKE" << CENDL;
            } else {
                cout << "OK" << CENDL;
            }
        }
        return 0;
    }
    cs

    반응형

    댓글

Designed by Tistory.