Competition/Baekjoon

[백준] 11576 자바 스택 활용

bisi 2020. 3. 17. 11:17
문제 출처 

https://www.acmicpc.net/problem/11576

 

11576번: Base Conversion

타임머신을 개발하는 정이는 오랜 노력 끝에 타임머신을 개발하는데 성공하였다. 미래가 궁금한 정이는 자신이 개발한 타임머신을 이용하여 500년 후의 세계로 여행을 떠나게 되었다. 500년 후의 세계에서도 프로그래밍을 하고 싶었던 정이는 백준 사이트에 접속하여 문제를 풀기로 하였다. 그러나 미래세계는 A진법을 사용하고 있었고, B진법을 사용하던 정이는 문제를 풀 수가 없었다. 뛰어난 프로그래머였던 정이는 A진법으로 나타낸 숫자를 B진법으로 변환시켜주는 프로그

www.acmicpc.net

 

 

 

접근 방식 및 풀이

- 주어진 숫자를 A진법 -> 10진법 -> B진법으로 변환하여 B진법의 결과값을 출력하면된다.

- array 만들때 index를 주의하고, 이를 해결하기 위해 stack구조를 사용하였다.

 

 

 

 

소스 코드 
import java.util.Scanner;
import java.util.Stack;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        int b = sc.nextInt();
        int count = sc.nextInt();
        int[] arr = new int[count];
        for (int i = count-1; i >=0 ; i--) {
            arr[i] = sc.nextInt();
        }

        int result = 0;
        for (int i = 0; i <count ; i++) {
            result += (arr[i]* Math.pow(a,i)) ;
        }

        Stack<Integer> stack = new Stack<Integer>();
        while (result!=0){
            stack.add(result%b);
            result= result/b;
        }
        StringBuilder sb = new StringBuilder();
        while (!stack.isEmpty()){
            sb.append(stack.pop() + " ");
        }
        System.out.println(sb);
    }
}

 

 

 

 

결과 

 

'Competition > Baekjoon' 카테고리의 다른 글

[백준] 7576번 토마토  (0) 2020.03.18
[백준] 1976번 그래프  (0) 2020.03.17
[백준] 11004번 자바 퀵소트  (0) 2020.03.16