โ”๋ฌธ์ œโ”

1463. 1 ๋งŒ๋“ค๊ธฐ

๐Ÿ™ŒSolution(java)๐Ÿ™Œ

dfs๋กœ ํ’€์ด(์‹œ๊ฐ„ ์ดˆ๊ณผ)

public class S3_1463_make_one {

    private static int[] res;

    public static void main(String[] args) throws IOException {

        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        StringBuilder builder = new StringBuilder();

        int n = Integer.parseInt(br.readLine());
        res = new int[n + 1];
        int count = dfs(n);

        builder.append(dfs(n));
        System.out.println(builder);
    }

    static int dfs(int n) {

        if (res[n] != 0) return res[n];

        int[] counts = new int[4];
        if (n == 3 || n == 2) return 1;
        if (n % 3 == 0) {
            counts[3] += dfs(n / 3) + 1;
        }
        if (n % 2 == 0) {
            counts[2] += dfs(n / 2) + 1;
        }
        counts[1] += dfs(n - 1) + 1;

        int min = Integer.MAX_VALUE;
        for (int i = 0; i < counts.length; i++) {
            if (counts[i] != 0 && counts[i] < min) min = counts[i];
        }

        res[n] = min;
        return min;
    }
}

์ฒ˜์Œ์— ๋ฌธ์ œ๋ฅผ ๋ดค์„ ๋•Œ DFS๋กœ ํ’€๋ฉด ํ’€๋ฆฌ๊ฒ ๋‹ค ์‹ถ์–ด์„œ DFS๋กœ ํ’€์—ˆ๋”๋‹ˆ ์ž…๋ ฅ๊ฐ’์ด 50000์ •๋„๋งŒ ๋˜๋„ stackoverflow๊ฐ€ ๋ฐœ์ƒํ–ˆ๋‹ค.( ์ตœ๋Œ€์ž…๋ ฅ๊ฐ’์€ 10^6 ์ด์—ˆ๋‹คใ… ใ… )

DFS๋กœ ํ’€๋ฆฌ๊ธด ํ–ˆ์–ด์„œ ์ ‘๊ทผ๋ฒ•์ด ํ‹€๋ ธ๋‹ค๊ธฐ ๋ณด๋‹ค๋Š” ๊ตฌํ˜„๋ฐฉ์‹์„ ๋ฐ˜๋ณต๋ฌธ ๊ธฐ๋ฐ˜ DFS๋กœ ๋ฐ”๊พธ๋ฉด ํ’€๋ฆฌ์ง€ ์•Š์„๊นŒ ์ƒ๊ฐ์ด ๋“ค์—ˆ๋Š”๋ฐ ์ƒ๊ฐ๋ณด๋‹ค ์ง๊ด€์ ์ด์ง€ ์•Š์•„์„œ ์–ด๋ ค์› ๊ณ  ํ’€๋ฉด ํ’€์ˆ˜๋ก DP๊ตฌํ˜„์— ๊ฐ€๊นŒ์›Œ์ง„๋‹ค๋Š” ๋Š๋‚Œ์„ ๋ฐ›์•˜๋‹ค.

๋‹ค๋ฅธ ์‚ฌ๋žŒ๋“ค์€ ์ด๊ฑธ ์–ด๋–ป๊ฒŒ ๊ตฌํ˜„ํ–ˆ๋‚˜ ์‹ถ์–ด ์ฐพ์•„๋ณด๋‹ˆ ์ด ๋ฌธ์ œ๊ฐ€ ๋Œ€ํ‘œ์ ์ธ DP๋ฌธ์ œ๋ผ๊ณ  ํ•œ๋‹ค..ใ…Ž

๊ดœํžˆ ์ด๊ฒƒ ๋•Œ๋ฌธ์— ์‹œ๊ฐ„ ์žก์•„๋จน๊ณ  ํ•™์Šต์˜์ง€๋„ ๋–จ์–ด์กŒ์—ˆ๋Š”๋ฐ ๊ทธ๋ƒฅ ์ข€ ์ผ์ฐ ํ™•์ธํ• ๊ฑธ ๊ทธ๋žฌ๋‹ค๋Š” ์ƒ๊ฐ์ด ๋“ ๋‹ค.๐Ÿ˜‚

DP๋กœ ํ’€์ด

import java.io.*;

public class S3_1463_make_one {

    private static int[] res;

    public static void main(String[] args) throws IOException {

        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        StringBuilder builder = new StringBuilder();

        int n = Integer.parseInt(br.readLine());
        res = new int[n + 1];
        int count = dp(n);

        builder.append(count);
        System.out.println(builder);
    }

    static int dp(int n){

        int[] res=new int[n+1];
        if(n>2) res[3]=1;
        if(n>1)res[2]=1;

        for(int i=4;i<=n;i++){
            int min=Integer.MAX_VALUE;
            if(i%2==0) min=Math.min(res[i/2],min);
            if(i%3==0) min=Math.min(res[i/3],min);
            min=Math.min(res[i-1],min);

            res[i]=min+1;
        }

        return res[n];
    }
}

DP๋กœ ํ‘ธ๋‹ˆ๊นŒ ์™„์ „ ๋นจ๋ฆฌ ํ’€๋ ธ๋‹ค..

๐Ÿ” Language Change(kotlin)๐Ÿ” 

import java.io.BufferedReader
import java.io.InputStreamReader
import java.lang.Integer.min

fun main(){
    val br=BufferedReader(InputStreamReader(System.`in`))
    val builder=StringBuilder()

    val n=br.readLine().toInt()
    builder.append(dp(n))
    println(builder)

}

fun dp(n:Int):Int{
    val res=Array(n + 1){0}

    if(n>1) res[2]=1
    if(n>2) res[3]=1

    for(i in 4..n){
        var min=Int.MAX_VALUE
        if(i%3==0) min=min(res[i/3],min)
        if(i%2==0) min=min(res[i/2],min)
        min=min(res[i-1],min)

        res[i]=min+1
    }

    return res[n]

}

๐Ÿš€Advanced๐Ÿš€

  • ๋‚˜๋Š” 4~n๊นŒ์ง€ ๋ฐ˜๋ณต์„ ๋Œ๋ ธ๋Š”๋ฐ res[1]์„ ์ •์˜ํ•ด์„œ 2~n๊นŒ์ง€ ๋ฐ˜๋ณต์„ ๋Œ๋ฆฌ๋ฉฐ ์ ํ™”์‹์œผ๋กœ res[2],res[3]์„ ์ •์˜ํ•˜๋Š” ์ฝ”๋“œ๋„ ์žˆ์—ˆ๋‹ค.
  • ๋ฐ˜๋ณต๋ฌธ ๋‚ด๋ถ€ ์ฝ”๋“œ๋Š” ์•„๋ž˜์™€ ๊ฐ™์ด ๋ณ€ํ™˜ํ•ด์•ผ ๋” ํšจ์œจ์ ์ผ ๊ฒƒ ๊ฐ™๋‹ค.

      var min=res[i-1]
      if(i%3==0) min=min(res[i/3],min)
      if(i%2==0) min=min(res[i/2],min)
    

๋Œ“๊ธ€๋‚จ๊ธฐ๊ธฐ