https://www.acmicpc.net/problem/1159
내 풀이
2중포문도 들어가고, set도 쓰고 있어서 깔끔하진 못하나 풀긴 함.
public class Boj1159_농구경기 {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int n = Integer.parseInt(br.readLine());
String[] names = new String[n];
for (int i = 0; i < n; i++) {
names[i] = br.readLine();
}
Arrays.sort(names); // 사전순 출력을 위한 정렬
Set<Character> set = new LinkedHashSet<>(); // 중복허용하지 않음은 동일하나, add한 순서대로 값이 저장됨.
for (String name : names) {
char c = name.charAt(0);
int cnt = 0;
loop:for (int i = 0; i < n; i++) {
char d = names[i].charAt(0);
if (c == d) {
cnt++;
}
if (cnt == 5){
set.add(c);
break loop;
}
}
}
if (set.isEmpty()) {
System.out.println("PREDAJA");
} else {
Iterator<Character> iter = set.iterator();
while (iter.hasNext()) {
System.out.print(iter.next());
}
}
}
}
블로그 참고한 풀이
public class Boj1159_농구경기 {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int[] alpha = new int[26];
int n = Integer.parseInt(br.readLine());
List<Character> list = new ArrayList<>();
for (int i = 0; i < n; i++) {
String s = br.readLine();
int index = s.charAt(0) - 'a';
alpha[index]++;
if (alpha[index] >=5) {
if (!list.contains((char)(index+97))) {
list.add((char) (index + 97));
}
}
}
if (list.size() == 0) {
System.out.println("PREDAJA");
} else {
Collections.sort(list);
for (int i = 0; i < list.size(); i++) {
System.out.print(list.get(i));
}
}
}
}
'알고리즘 > 백준' 카테고리의 다른 글
백준 2587 대표값2 (0) | 2022.02.28 |
---|---|
백준 11720 숫자의 합 (0) | 2022.02.28 |
백준 2864 5와 6의 차이 (0) | 2022.02.25 |
백준 1075 나누기 (0) | 2022.02.24 |
백준 10807 개수 세기 (0) | 2022.02.24 |