매일 조금씩

백준 10769번: 행복한지 슬픈지 본문

알고리즘

백준 10769번: 행복한지 슬픈지

mezo 2020. 2. 8. 20:34
728x90
반응형

 

 

실수로 cin으로 해놓고 잘못된 걸 찾았던 문제..^^

 

 

 

#include <iostream>
#include <string>
#include <vector>
using namespace std;


int main(void) {
	ios_base::sync_with_stdio(0);
	cin.tie(0);

	string str;
	int happy = 0;
	int sad = 0;

	getline(cin, str);

	for (int i = 0; i < str.size(); i++) {
		if (i < str.size()-3 && str[i] == ':'&& str[i + 1] == '-'&& str[i + 2] == ')') {
			happy++;
		}
		else if (i < str.size() - 3 && str[i] == ':'&& str[i + 1] == '-'&& str[i + 2] == '(') {
			sad++;
		}
	}

	if (!happy && !sad)
		cout << "none";
	else if (happy == sad)
		cout << "unsure";
	else if (happy > sad)
		cout << "happy";
	else 
		cout << "sad";

	return 0;
}
728x90
반응형

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

백준 11656번: 접미사 배열  (0) 2020.02.11
백준 2897번: 몬스터 트럭  (0) 2020.02.09
백준 1919번: 애너그램 만들기  (0) 2020.01.19
백준 2857번: FBI  (0) 2020.01.18
백준 10808번: 알바벳 개수  (0) 2020.01.18