-
Notifications
You must be signed in to change notification settings - Fork 1k
/
Copy patheulerian_number.jl
55 lines (45 loc) · 1.21 KB
/
eulerian_number.jl
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
"""
Julia program to implement Eulerian Number
Eulerian number is a number found in combinatorial mathematics. It is the number of permutations of the
numbers 1 to n in which exactly m elements are greater than previous element.
"""
function eulerian(n, m)
# Build a Dynamic Programming table
dp = zeros(Int, n + 1, m + 1)
# Fill the table in Bottom-Up manner
for i in 2:(n+1)
for j in 1:(m+1)
#Update the table only if i greater than j
if(i > j)
if(j == 1)
dp[i, j] = 1
else
dp[i, j] = (((i - j) * dp[i-1, j-1]) + ((j) * dp[i-1, j]))
end
end
end
end
return dp[n + 1,m + 1]
end
print("Enter the value of n? ")
n = readline()
n = parse(Int64, n)
print("Enter the value of m? ")
m = readline()
m = parse(Int64, m)
ans = eulerian(n, m)
print("The required eulerian number is ")
print(ans)
"""
Time Complexity - O(n * m)
Space Complexity - O(n * m)
SAMPLE INPUT AND OUTPUT
SAMPLE I
Enter the value of n? 3
Enter the value of m? 1
The required eulerian number is 4
SAMPLE II
Enter the value of n? 15
Enter the value of m? 6
The required eulerian number is 311387598411
"""