[BAEKJOON] #10809 (Java)

Inwook Baek ·2021년 10월 3일
0

Algorithm Study

목록 보기
36/38
post-thumbnail

Problem Link

Problem:
알파벳 소문자로만 이루어진 단어 S가 주어진다. 각각의 알파벳에 대해서, 단어에 포함되어 있는 경우에는 처음 등장하는 위치를, 포함되어 있지 않은 경우에는 -1을 출력하는 프로그램을 작성하시오.

My Code:

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.nio.Buffer;
import java.io.IOException;

public class BaekJoon_10809 {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));

        int[] arr = new int[26];

        // default array 
        for (int i = 0; i < 26; i++) {
            arr[i] = -1;
        }

        String s = br.readLine();

        
        for (int i = 0; i < s.length(); i++) {
            // store given word's alphabet 
            char ch = s.charAt(i);

            // convert default array with a given alphabet - 'a'/97
            if (arr[ch -'a'] == -1) {
                arr[ch - 'a'] =  i; 
            }
        }

        for (int val : arr) {
            System.out.print(val + " ");
        }
    }
    
}

Input

baekjoon

Output

1 0 -1 -1 2 -1 -1 -1 -1 4 3 -1 -1 7 5 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1 -1

0개의 댓글