728x90
간단하게 설명하면, 입력된 단어를 스펠링단위로 값을 받아 입력된 값을 check[] 에 따로 표시하면서.
다음 스펠링이 check[] 에 표시가 되었다면, 전에 스펠링과 같은 스펠링이면 패스, 다른 스펠링이면 break or return false 로 카운트 하지 않는 방법으로 접근해서 풀었다.
일반 2중 반복문
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.List;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));
int str = Integer.parseInt(bf.readLine());
int count = 0;
List<Character> cl = new ArrayList<Character>();
while (str > 0) {
boolean check[] = new boolean[26]; // 알파벳 26개, 기본 false 로 선언
String st = bf.readLine();
for (int i = 0; i < st.length(); i++) {
if (check[((int) (st.charAt(i)) - 'a')] == false) {
check[((int) (st.charAt(i)) - 'a')] = true;
} else if (check[((int)(st.charAt(i))-'a')] == true){
if (i > 0 ) {
if ( st.charAt(i - 1) != st.charAt(i) ) {
count--;
break;
}
}
}
}
count++;
str--;
}
System.out.println(count);
}
}
함수로 풀이
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.List;
public class Main {
static BufferedReader bf = new BufferedReader(new InputStreamReader(System.in));
public static void main(String[] args) throws IOException {
int c = Integer.parseInt(bf.readLine());
int count = 0;
while (c>0) {
if( check() == true) {
count++;
}
c--;
}
System.out.println(count);
}
public static boolean check() throws IOException {
boolean check[] = new boolean[26]; // 알파벳 26개, 기본 false 로 선언
String st = bf.readLine();
for (int i = 0; i < st.length(); i++) {
if (check[((int) (st.charAt(i)) - 'a')] == false) {
check[((int) (st.charAt(i)) - 'a')] = true;
} else if (check[((int)(st.charAt(i))-'a')] == true){
if (i > 0 ) {
if ( st.charAt(i - 1) != st.charAt(i) ) {
return false;
}
}
}
}
return true;
}
}
728x90
'알고리즘 풀이 > 백준' 카테고리의 다른 글
Java - [백준] 1929 소수 구하기 (2) | 2022.09.30 |
---|---|
Java - [백준] 2292 벌집 (0) | 2022.09.27 |
Java - [백준] 1157번 단어공부 (0) | 2022.09.20 |
Java - [백준] 3052번 나머지 (0) | 2022.09.09 |
Java - [백준] 11021 A+B -7 (0) | 2022.09.02 |
댓글