鱼C论坛

 找回密码
 立即注册
查看: 1695|回复: 0

[学习笔记] leetcode 1201. Ugly Number III

[复制链接]
发表于 2019-9-24 11:33:06 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
  1. Write a program to find the n-th ugly number.

  2. Ugly numbers are positive integers which are divisible by a or b or c.



  3. Example 1:

  4. Input: n = 3, a = 2, b = 3, c = 5
  5. Output: 4
  6. Explanation: The ugly numbers are 2, 3, 4, 5, 6, 8, 9, 10... The 3rd is 4.
  7. Example 2:

  8. Input: n = 4, a = 2, b = 3, c = 4
  9. Output: 6
  10. Explanation: The ugly numbers are 2, 3, 4, 6, 8, 9, 10, 12... The 4th is 6.
  11. Example 3:

  12. Input: n = 5, a = 2, b = 11, c = 13
  13. Output: 10
  14. Explanation: The ugly numbers are 2, 4, 6, 8, 10, 11, 12, 13... The 5th is 10.
  15. Example 4:

  16. Input: n = 1000000000, a = 2, b = 217983653, c = 336916467
  17. Output: 1999999984


  18. Constraints:

  19. 1 <= n, a, b, c <= 10^9
  20. 1 <= a * b * c <= 10^18
  21. It's guaranteed that the result will be in range [1, 2 * 10^9]
复制代码

  1. class Solution {
  2.     public static int nthUglyNumber(int n, int a, int b, int c) {
  3.         int start = 1,end = Integer.MAX_VALUE,mid;
  4.         
  5.         while(start < end){
  6.             mid = start + (end - start) / 2;
  7.             if(count(a,b,c,mid) < n) start = mid + 1;
  8.             else {
  9.                 end = mid;
  10.             }
  11.         }
  12.         
  13.         return end;
  14.     }
  15.     static long stein(long a, long b){
  16.         int acc = 0;
  17.     while ((a & 1) == 0 && (b & 1) == 0) {
  18.         acc++;
  19.         a >>= 1;
  20.         b >>= 1;
  21.     }
  22.     while ((a & 1) == 0) a >>= 1;
  23.     while ((b & 1) == 0) b >>= 1;
  24.     if (a < b) { long t = a; a = b; b = t; }
  25.     while ((a = (a - b) >> 1) != 0) {
  26.         while ((a & 1) == 0) a >>= 1;
  27.         if (a < b) { long t = a; a = b; b = t; }
  28.     }
  29.     return b << acc;

  30.         
  31.     }
  32.    
  33.     static long lcm(long a, long b){
  34.         
  35.         return a*b / stein(a,b);
  36.     }
  37.    
  38.     static long count (long a, long b, long c, long num){
  39.         
  40.         return ((num / a) + (num / b) + (num / c)
  41.                 - (num / lcm(a, b))
  42.                 - (num / lcm(b, c))
  43.                 - (num / lcm(a, c))
  44.                 + (num / lcm(a, lcm(b, c))));
  45.     }  
  46. }
复制代码

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-5-2 02:04

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表