-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathassignment_3_shuffle_checker_v2.py
55 lines (46 loc) · 1.59 KB
/
assignment_3_shuffle_checker_v2.py
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
# Analysis of Algorithms
# Assignment 3: Shuffle Checker using Dynamic Programming
# Team members: Yevhen Voitiuk, Julia Maliauka, Michael Petracca
try:
U = input("Enter U: ")
except SyntaxError:
U = ""
try:
V = input("Enter V: ")
except SyntaxError:
V = ""
try:
W = input("Enter W: ")
except SyntaxError:
W = ""
def check_shuffle(U, V, W):
if len(W) != (len(U) + len(V)):
print("No")
return False
graph = [[0 for x in range(0, len(V) + 1)] for y in range(0, len(U) + 1)]
# The graph at (0,0) is true regardless of circumstance
graph[0][0] = True
# the edges along the 'outside' of the graph have one parent each, so set them specially
for i in range(0, len(U) + 1):
for j in range(0, len(V) + 1):
if i == 0 and j == 0:
graph[i][j] = True
elif i == 0 and V[j - 1] == W[j - 1]:
graph[i][j] = graph[i][j - 1]
elif j == 0 and U[i - 1] == W[i - 1]:
graph[i][j] = graph[i - 1][j]
elif (U[i - 1] == W[i + j - 1]) and (V[j - 1] != W[i + j - 1]):
graph[i][j] = graph[i - 1][j]
elif (U[i - 1] != W[i + j - 1]) and (V[j - 1] == W[i + j - 1]):
graph[i][j] = graph[i][j - 1]
elif (U[i - 1] == W[i + j - 1]) and (V[j - 1] == W[i + j - 1]):
graph[i][j] = graph[i - 1][j] or graph[i][j - 1]
else:
graph[i][j] = False
if graph[len(U)][len(V)] == True:
print("Yes")
return True
else:
print("No")
return False
check_shuffle(U, V, W)