곽로그
[백준 1326, 자바] 그룹단어 체커 -- 다시 본문
반응형
문제
접근
코드
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
public class Main {
public static void main(String[] args) throws NumberFormatException, IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
BufferedWriter bw = new BufferedWriter(new OutputStreamWriter(System.out));
int N = Integer.parseInt(br.readLine());
int count = 0;
for(int i = 0; i< N ;i++) {
String word = br.readLine();
if(isGroupWord(word)) {
count ++;
}
}
bw.write(Integer.toString(count));
bw.close();
}
public static boolean[] alreadyExist;
public static boolean isGroupWord(String word) {
alreadyExist = new boolean[26];
int length = word.length();
int standIndex = 0;
int nextIndex = 0;
char standAlpha ;
char nextAlpha ;
while(standIndex<length) {
standAlpha = word.charAt(standIndex);
if(alreadyExist[standAlpha-97]) {
return false;
}
else {
alreadyExist[standAlpha-97]=true;
}
if(standIndex == length-1) {
return true;
}
nextIndex = standIndex+1;
//그 다음 기준 알파벳을 찾기
while(nextIndex<length) {
nextAlpha = word.charAt(nextIndex);
if(standAlpha == nextAlpha) {
nextIndex++;
}
else {
standIndex = nextIndex;
break;
}
}
//nextIndex가 word의 길이를 넘어간 경우
if(nextIndex>=length) {
return true;
}
}
//standIndex가 word의 길이를 넘어간 경우
return true;
}
}
개선
참고블로그
https://hongku.tistory.com/244
https://zorba91.tistory.com/108
반응형
'알고리즘 > 백준' 카테고리의 다른 글
[백준 2941, 자바] 크로아티아 알파벳 (0) | 2020.03.15 |
---|---|
[백준 5622, 자바] 다이얼 (0) | 2020.03.15 |
[백준 2789 자바] 블랙잭 (0) | 2020.03.08 |
[백준 1018 자바] 체스판 다시 칠하기 (0) | 2020.03.07 |
[백준 2231 자바] 분해합 (0) | 2020.03.03 |
Comments