zoukankan      html  css  js  c++  java
  • LeetCode 788. Rotated Digits

    原题链接在这里:https://leetcode.com/problems/rotated-digits/

    题目:

    X is a good number if after rotating each digit individually by 180 degrees, we get a valid number that is different from X.  Each digit must be rotated - we cannot choose to leave it alone.

    A number is valid if each digit remains a digit after rotation. 0, 1, and 8 rotate to themselves; 2 and 5 rotate to each other; 6 and 9 rotate to each other, and the rest of the numbers do not rotate to any other number and become invalid.

    Now given a positive number N, how many numbers X from 1 to N are good?

    Example:
    Input: 10
    Output: 4
    Explanation: 
    There are four good numbers in the range [1, 10] : 2, 5, 6, 9.
    Note that 1 and 10 are not good numbers, since they remain unchanged after rotating.
    

    Note:

    • N  will be in range [1, 10000].

    题解:

    Pay attention that the quesiton is asking to rotate each digit, it is not rotating the whoe number.

    Thus, if digit is 3,4,7, then it is invalid.

    If digit is 0, 1, 8, it is valid, also the same.

    If digit is 2, 5, 6, 9, it is valid and different.

    Check the number with dp, dp[i] represents if i is good, dp[i] = 0, invalid. dp[i] = 1, valid and same. dp[i] = 2, valid and different.

    Check dp[i / 10] and dp[i % 10]. If both are 1, then dp[i] = 1. Else if both >= 1, which means there is one part = 2, then dp[i] = 2.

    Time Complexity: O(N).

    Space: O(N).

    AC Java:  

     1 class Solution {
     2     public int rotatedDigits(int N) {
     3         if(N < 0){
     4             return 0;
     5         }
     6         
     7         int res = 0;
     8         int [] dp = new int[N + 1];
     9         for(int i = 0; i <= N; i++){
    10             if(i < 10){
    11                 if(i == 0 || i == 1 || i == 8){
    12                     dp[i] = 1;
    13                 }else if(i == 2 || i == 5 || i == 6 || i == 9){
    14                     dp[i] = 2;
    15                     res++;
    16                 }           
    17             }else{
    18                 int a = dp[i / 10];
    19                 int b = dp[i % 10];
    20                 if(a == 1 && b == 1){
    21                     dp[i] = 1;
    22                 }else if(a >= 1 && b >= 1){
    23                     dp[i] = 2;
    24                     res++;
    25                 }
    26             }
    27         }
    28         
    29         return res;
    30     }
    31 }
  • 相关阅读:
    校园活动管理-毕业设计
    Golang时间字符串转换计算器
    5.21 Go秘籍:异步收割,永葆单身
    Golang东北之旅—channel
    Python3下载豆瓣音乐人小站音乐
    一张图记住4种树
    人生如锁
    Golang构造二叉树解决整数排序问题
    用Golang单元测试写作文
    Golang定时任务表达式合法性校验
  • 原文地址:https://www.cnblogs.com/Dylan-Java-NYC/p/12105362.html
Copyright © 2011-2022 走看看