zoukankan      html  css  js  c++  java
  • LeetCode 650. 2 Keys Keyboard

    Initially on a notepad only one character 'A' is present. You can perform two operations on this notepad for each step:

    Copy All: You can copy all the characters present on the notepad (partial copy is not allowed).

    Paste: You can paste the characters which are copied last time.

    Given a number n. You have to get exactly n 'A' on the notepad by performing the minimum number of steps permitted. Output the minimum number of steps to get n 'A'.

    Example 1:

    Input: 3
    Output: 3
    Explanation:
    Intitally, we have one character 'A'.
    In step 1, we use Copy All operation.
    In step 2, we use Paste operation to get 'AA'.
    In step 3, we use Paste operation to get 'AAA'.

    Note:

    The n will be in the range [1, 1000].

    分析

    如果n是质数的话,就要一个一个粘贴上去,次数就是n.
    如果不是质数的话,由先由一个A获得n的最大公因子m为模版,在copy all,在paste n/m-1 次。

    class Solution {
    public:
        int isprime(int n){
            int i;
            if(n==1) return 1;
            for(i=2;i<=sqrt(n);i++)
                if(n%i==0) return i;
            return -1;
        }
        int minSteps(int n) {
            int dp[11001]={0};
            if(isprime(n)==-1)
               return n;
            for(int i=2;i<=n;i++)
                if(isprime(i)==-1)
                   dp[i]=i;
                else
                   dp[i]=dp[i/isprime(i)]+isprime(i);
            return dp[n];
        }
    };
    

    一种更棒的写法

    class Solution {
    public:
        int minSteps(int n) {
            if (n == 1) return 0;
            for (int i = 2; i < n; i++)
                if (n % i == 0) return i + minSteps(n / i);
            return n;
        }
    };
    
  • 相关阅读:
    GoLang中面向对象的三大特性
    Go常用功能总结一阶段
    GO语言基础之并发concurrency
    GO语言基础之error
    GO语言基础之reflect反射
    GO语言基础之interface
    GO语言基础之method
    GO语言基础之struct
    GO语言基础map与函数
    GO语言基础条件、跳转、Array和Slice
  • 原文地址:https://www.cnblogs.com/A-Little-Nut/p/10079953.html
Copyright © 2011-2022 走看看