1159 : 농구 경기

풀이

사실 그냥 체킹 배열에 카운트 해줘도 되는데

map 안 쓴지가 오래돼서 써봤다 ㅎㅎ

코드

#include <cstdio>
#include <map>
using namespace std;

int n;
char a[155];
map<char, int> s;

int main() {
	scanf("%d", &n);
	while (n--) scanf("%s", a), s[a[0]]++;
	for (auto it : s) if (it.second >= 5) putchar(it.first), n++;
	if (n == -1) printf("%s", "PREDAJA");
	return 0;
}

아무말

백준, 백준 온라인 저지, BOJ, Baekjoon Online Judge, C, C++, 씨, 씨쁠쁠, JAVA, algorithm, 자바, 알고리즘, 자료구조, 문제, 문제 풀이, 풀이

wookje.kwon's profile image

wookje.kwon

2018-01-24 18:27

Read more posts by this author