-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathugly-number.cpp
67 lines (65 loc) · 1.07 KB
/
ugly-number.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// ugly numbers
#include <bits/stdc++.h>
using namespace std;
int main(){
int n;
int arr[100005], res[100005];;
cin>>n;
int i2=0,i3=0,i5=0;
int two=2,three=3,five=5;
int next = 1;
arr[0]=1;
for(int i=1;i<n;i++){
next = min(two,min(three,five));
arr[i] = next;
if(next == two){
i2++;
two = arr[i2]*2;
}
if(next == three){
i3++;
three = arr[i3]*3;
}
if(next == five){
i5++;
five = arr[i5]*5;
}
}
cout << next << endl;
// int sz = 100005;
// for(int i=0;i<sz;i++){
// arr[i] = 0;
// }
// arr[0] = 0;
// arr[1] = 1;
// arr[2] = 1;
// arr[3] = 1;
// arr[4] = 1;
// arr[5] = 1;
// res[1] = 1;
// res[2] = 2;
// res[3] = 3;
// res[4] = 4;
// res[5] = 5;
// int j = 6;
// for(int i=6; i<sz; i++){
// if(i%5 == 0){
// if(arr[i/5] == 1){
// arr[i] = 1;
// res[j++] = i;
// }
// }else if(i%3 == 0){
// if(arr[i/3] == 1){
// arr[i] = 1;
// res[j++] = i;
// }
// }else if(i%2 == 0){
// if(arr[i/2] == 1){
// arr[i] = 1;
// res[j++] = i;
// }
// }
// }
// cout << res[n] << endl;
return 0;
}