-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path단어 변환.py
144 lines (106 loc) · 2.82 KB
/
단어 변환.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
"""
# 2020.4.14
def diffone(a,b):
cnt = 0
for i in range(len(a)):
if a[i] != b[i]:
cnt += 1
if cnt == 2:
break
if cnt == 1:
return True
return False
def solution(begin, target, words):
if target not in words:
return 0
begin = [begin]
answer = 0
while words:
for string in begin:
temp = []
for word in words:
if diffone(string, word):
temp.append(word)
words.remove(word)
answer += 1
if target in temp:
return answer
begin = temp[:]
return 0
"""
"""
# 2021.3.19
def solution(begin, target, words):
answer = 51
length = len(begin)
def OneLetterDifferent(current,cnt,visited):
nonlocal answer
if current == target:
answer = min(answer, cnt)
return
for word in words:
if word in visited:
continue
temp = 0
for i in range(length):
if current[i] != word[i]:
temp += 1
else:
if temp == 1:
OneLetterDifferent(word, cnt+1, visited + [word])
OneLetterDifferent(begin, 0, [])
if answer == 51:
return 0
return answer
"""
'''
#2021.6.26
def solution(begin, target, words):
def checkOneDiffent(begin,word):
cnt = 0
for i in range(len(begin)):
if begin[i] != word[i]:
cnt += 1
if cnt >= 2:
return False
if cnt == 1:
return True
return False
visited = []
queue = [begin]
cnt = 0
while queue:
cnt += 1
for _ in range(len(queue)):
begin = queue.pop(0)
for word in words:
if checkOneDiffent(begin, word) and word not in visited:
queue.append(word)
visited.append(word)
if target in queue:
return cnt
words = list(set(words) - set(queue))
return 0
'''
from collections import deque
def check_onediff(start, word):
cnt = 0
for i in range(len(start)):
if start[i] != word[i]:
cnt += 1
if cnt == 1:
return True
return False
def solution(begin, target, words):
if target not in words:
return 0
queue = deque([[begin,0]])
visited = [begin]
while queue:
start, cnt = queue.popleft()
if start == target:
return cnt
for word in words:
if check_onediff(start, word) and (word not in visited):
queue.append([word, cnt+1])
visited.append(word)