알고리즘/BOJ

백준 2810번 컵홀더

꾸준함. 2018. 10. 28. 14:20

문제 링크입니다: https://www.acmicpc.net/problem/2810


간단한 문자열 처리 문제였습니다.

핵심은 컵홀더 개수를 구하는 것이 아니라 컵홀더를 쓰는 사람의 수를 구하는 것였습니다!



#include <iostream>

#include <string>

#include <algorithm>

using namespace std;

 

int main(void)

{

        ios_base::sync_with_stdio(0);

        cin.tie(0);

        int N;

        cin >> N;

 

        string s;

        cin >> s;

 

        int cnt = 1; //처음에는 무조건 컵홀더가 있다

        int L = 0;

        for (int i = 0; i < s.length(); i++)

                 if (s[i] == 'S')

                         cnt++;

                 else

                 {

                         L++;

                         if (L == 2)

                         {

                                 cnt++;

                                 L = 0;

                         }

                 }

        if (L == 1)

                 cnt++;

 

        cout << min(cnt, N) << "\n";

        return 0;

}



개발환경:Visual Studio 2017


지적, 조언, 질문 환영입니다! 댓글 남겨주세요~

반응형

'알고리즘 > BOJ' 카테고리의 다른 글

백준 2816번 디지털 티비  (0) 2018.10.28
백준 3613번 Java vs C++  (0) 2018.10.28
백준 9536번 여우는 어떻게 울지?  (0) 2018.10.28
백준 5525번 IOIOI  (0) 2018.10.28
백준 1062번 가르침  (5) 2018.10.28