-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weโll occasionally send you account related emails.
Already on GitHub? Sign in to your account
25-H0ngJu #234
Conversation
์๋ ์น๊ตฌ๋น ์งค ๋นตํฐ์ก๋ค ใ ใ ใ ใ ใ ใ ใ ใ ใ ใ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
import sys
from collections import defaultdict
def input(): return sys.stdin.readline().rstrip()
N, M, money = map(int, input().split())
parent_cost = [(idx, cost) for idx, cost in enumerate(map(int, input().split()))]
def find_parent(graph, element):
if element == graph[element][0]:
return graph[element]
graph[element] = find_parent(graph, graph[element][0])
return graph[element]
def union(graph, x, y):
x_parent = find_parent(graph, x)
y_parent = find_parent(graph, y)
if x_parent[0] != y_parent[0]:
if x_parent[1] < y_parent[1]:
graph[y_parent[0]] = x_parent
else:
graph[x_parent[0]] = y_parent
parent = {idx: (idx, cost) for idx, cost in parent_cost}
for _ in range(M):
fr1, fr2 = map(int, input().split())
union(parent, fr1-1, fr2-1)
visited = set()
need_money = 0
for idx in range(N):
if idx not in visited:
stack = [idx]
min_cost = float('inf')
while stack:
node = stack.pop()
if node in visited:
continue
visited.add(node)
min_cost = min(min_cost, parent[node][1])
parent_node = find_parent(parent, node)[0]
for next_node in range(N):
if next_node != node and find_parent(parent, next_node)[0] == parent_node and next_node not in visited:
stack.append(next_node)
need_money += min_cost
print(need_money) if need_money <= money else print("Oh no")
๋ฒ์ค์ ์ ์ ๋์จ ํ์ธ๋๋ก ํ๋ฆฌ๊ฒ ๋๋ฐ? ํ๊ณ ํฐ์ฝ๋ฉ์ผ๋ก ํ์์๋๋ง ํํ
์นญ์ฐฌํด์กฐ~~~~~!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
์ ๋์จ ํ์ธ๋ ์๊ณ ๋ฆฌ์ฆ์ ์ต์ ํํ๋ ๋ฐฉ๋ฒ์ผ๋ก ๋ณดํต ๊ฒฝ๋ก ์์ถ(Path Compreesion) ๊ธฐ๋ฒ์ ๋ง์ด ์ฌ์ฉํ์ฃ . ์ด๊ฒ ์ธ์๋ ๊ฐ์ค์น ๊ฒฐํฉ(Weighted Union) ๊ธฐ๋ฒ๋ ์๋๋ฐ์, ๊ฐ ์งํฉ์ ํฌ๊ธฐ ์ ๋ณด๋ฅผ ์ด์ฉํด ์งํฉ์ ํฌ๊ธฐ๋ฅผ ๊ท ๋ฑํ๊ฒ ๋ง๋๋ ์ต์ ํ ๊ธฐ๋ฒ์ ๋๋ค(๊ด๋ จ ์์).
์ฌ๊ธฐ์ ์ด๋ฅผ ์์ฉํ ์ ์๋๋ฐ์, ์ฌ๊ธฐ์๋ ์ต์ ํ์ ๋ชฉ์ ์ผ๋ก ์ฌ์ฉํ์ง ์๊ณ ๋ฌธ์ ์์ "์น๊ตฌ์ ์น๊ตฌ๋ ์น๊ตฌ"๋ผ ํ์ผ๋, ๊ฐ์ ์งํฉ์ ์๋ ์น๊ตฌ๋ค์ ์ฌ๊ท ๋๋ ๊ทธ ์ค "๊ฐ์ฅ ์ ์ ์น๊ตฌ๋น"๋ก ํต์ผ์์ผ๋ ๋๊ฒ ์ฃ . ์ฆ ์งํฉ์ ํฌ๊ธฐ๋ฅผ ๋ํ๋ด์ง ์๊ณ ๊ฐ์ฅ ์ ์ ์น๊ตฌ๋น๋ฅผ ๊ธฐ๋กํ๋ ์ฉ๋๋ก ์ฌ์ฉํ๋ฉด ๋ฉ๋๋ค.
def main(input):
N, M, k = map(int, input().split())
sz = [0] + list(map(int, input().split())) # ๊ฐ ์น๊ตฌ๋ฅผ ์ฌ๊ท๋ ๋ฐ ํ์ํ ๋น์ฉ
p = [i for i in range(N + 1)]
def find(x: int) -> int:
while x != p[x]:
p[x] = p[p[x]]
x = p[x]
return p[x]
def union(x: int, y: int):
x = find(x)
y = find(y)
if sz[x] > sz[y]: # ์น๊ตฌ๋น๊ฐ ๋ ์ ์ ์ชฝ์ผ๋ก ๊ฒฐํฉ
p[x] = y
sz[x] = sz[y]
else:
p[y] = x
sz[y] = sz[x]
for _ in range(M):
v, w = map(int, input().split())
union(v, w)
s = set() # ๊ฐ ์น๊ตฌ ์งํฉ ๋น 1๋ช
์ฉ๋ง ์์ผ๋ฉด ๋๋ฏ๋ก set์ ์ด์ฉํด ๊ธฐ๋ก
ans = 0
for friend in range(1, N + 1):
root = find(friend) # ๊ฐ ์น๊ตฌ ์ง๋จ์ ์ต์์ ๋ถ๋ชจ๋ฅผ ๊ฐ์ ธ์ด
if root not in s: # ์ด์ ์ ๋ง๋ ์น๊ตฌ ์งํฉ์ด ์๋๋ผ๋ฉด
s.add(root) # ์ด ์ง๋จ์ ์ํ๋ ์น๊ตฌ๋ค์ ๋ชจ๋ ์ฌ๊ท
ans += sz[root] # ๊ทธ ์น๊ตฌ ์ง๋จ์ ์น๊ตฌ๋ค์ ์ฌ๊ท๊ธฐ ์ํ ๋น์ฉ
print("Oh no" if ans > k else ans)
if __name__ == "__main__":
main(open(0).readline)
์ด๋ฐ ์์ด๋ฉด ๋ณ๋๋ก stack์ด๋ queue๋ฅผ ์ธ ํ์ ์์ด ๋ฐ๋ณต๋ฌธ ํ ๋ฒ๋ง ๋๋ ค์ฃผ๋ฉด ๋ฉ๋๋ค :)
๋ค๋ฅธ ๋ถ๋ค์ ์ ๋์จํ์ธ๋๋ฅผ ๋ง์ด ์ฐ์ จ๊ตฐ์ ์ ๋ ์์ง ์ ๋์จํ์ธ๋๊ฐ ์ต์ํ์ง ์์์ ํ์ฃผ๋์ด๋ ๋๊ฐ์ด BFS๋ฅผ ์ด์ฉํด์ ํ์์ต๋๋ค!! ๊ทธ๋ฐ๋ฐ import sys
from collections import deque
input = sys.stdin.readline
N, M, k = map(int, input().split())
student = list(map(int, input().split()))
friend = [[] for i in range(N+1)]
visited = [False] * (N+1)
resultMoney = 0
for _ in range(M) :
a,b = map(int, input().split())
friend[a].append(b)
friend[b].append(a)
def bfs(start):
queue = deque([start])
visited[start] = True
group_min_cost = student[start-1]
while queue:
node = queue.popleft()
for neighbor in friend[node]:
if not visited[neighbor]:
visited[neighbor] = True
queue.append(neighbor)
group_min_cost = min(group_min_cost, student[neighbor-1])
return group_min_cost
for i in range(1, N+1):
if not visited[i]:
resultMoney += bfs(i)
if resultMoney > k:
print("Oh no")
else:
print(resultMoney) |
if friends: | ||
cost = min(friend_money[friend] for friend in friends) | ||
total += cost |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
cost๋ฅผ ๋ค ์ ์ฅํด๋์๊ณ ๋ง์ง๋ง์ min์ผ๋ก ํ๋ ๋ฐฉ๋ฒ์ ์ด์ฉํ์ จ๊ตฐ์!!
์ ๋ queue์์์ ๋๋ฉด์ ๋ฐ๋ก๋ฐ๋ก ์ ์ผ ์์ ๋ถ๋ถ์ ๋ฃ์ด์คฌ๋๋ฐ ์ด ๋ถ๋ถ๋ ์ข์๋ณด์ด๋ค์!
๐ ๋ฌธ์ ๋งํฌ
์น๊ตฌ๋น
โ๏ธ ์์๋ ์๊ฐ
40M
โจ ์๋ ์ฝ๋
๋ฌธ์ ์์ฝ
๊ฐ์ฅ ์ ์ ๋น์ฉ์ผ๋ก ๋ชจ๋ ์ฌ๋๊ณผ ์น๊ตฌ๊ฐ ๋๋ ๋ฐฉ๋ฒ์ ๊ตฌํ๋ผ@!
์น๊ตฌ A์๊ฒ ์น๊ตฌ๋น๋ฅผ ์ง๋ถํ๋ฉด, ์น๊ตฌ A์ ์น๊ตฌ๊ด๊ณ์ธ ์น๊ตฌ B๋ ์น๊ตฌ๊ฐ ๋๋ค
์งค ์ธ๋ ค๊ณ ์ด ๋ฌธ์ ํ์์ต๋๋ค ใ .ใ ์ฌ์ค ์ฒ์์ ๋ฌธ์ ๋ณด๊ณ ์น๊ตฌ ๋คํธ์ํฌ๊ฐ ์๊ฐ๋์ ์ ๋์จ-ํ์ธ๋๋ก ํ ์ ์์ ๊ฒ ๊ฐ์์ ์๋ํ๋๋ฐ ํ๋ค๊ฐ ๋น ๋ฅด๊ฒ ๋๋ ธ์ต๋๋ค.
๋ถ๋ชจ ๋ ธ๋ ์ถ๊ฐํ ๋๋ง๋ค ์ต์๋น์ฉ์ ์ ์ฅํ๋ ค๊ณ ํ๋๋ฐ, ์ ์๋๋๋ผ๊ณ ์.
์ถฉ๋ถํ ๊ฐ๋ฅํ ๊ฒ ๊ฐ์๋ฐ..
์ด์จ๋ , ์ด๋ค ๋ฐฉ๋ฒ์ ์ฌ์ฉํ๋ ์น๊ตฌ๊ด๊ณ์ธ ์ฌ๋์ ๋ชจ์๋๊ณ ๊ทธ ์ค์ ์ต์๋ฅผ ์ฐพ์ผ๋ฉด ๊ทธ๋ง์ด๋๊น deque๋ฅผ ์ฌ์ฉํด์ ๋ชจ์๋๊ธฐ๋ก ํ์ต๋๋ค.
์น๊ตฌ๋
5
๋ช , ์ค์์ด๊ฐ ๊ฐ์ง๊ณ ์๋ ๋์20
,5๋ช ์ ๋ํ ๊ฐ๊ฐ ์น๊ตฌ๋น๋
10, 10, 20, 20, 30
์ด๋ผ๊ณ ๊ฐ์ ํ๊ฒ ์ต๋๋ค.๊ทธ๋ฆฌ๊ณ
1-3, 2-4, 4-5
๊ฐ ์น๊ตฌ๊ด๊ณ์ธ ๊ฒฝ์ฐ๋ฅผ ์๊ฐํด๋ด ์๋ค.์ด๋, ์น๊ตฌ ๊ด๊ณ๋ relation์ ์ ์ฅํฉ๋๋ค.
1-3์ ๊ฒฝ์ฐ,
relation[1]์๋ 3์ ์ถ๊ฐํ๊ณ , relation[3]์๋ 1์ ์ถ๊ฐ ํ์ฌ ์น๊ตฌ๊ด๊ณ๋ฅผ ์ ์ฅํฉ๋๋ค.
ใด ์ ์ฅ๋ relation ์ถ๋ ฅ๊ฐ
์ ์ฅ๋
relation
์ ๋ณด๋ฅผ ๋ฐํ์ผ๋ก,๋จผ์ 1๋ฒ ์น๊ตฌ๋ถํฐ ์์ํด์ ๋๊ตฌ์ ์น๊ตฌ ๊ด๊ณ์ธ์ง ํ์ ํด์ผํฉ๋๋ค.
์ด๋ q๋ฅผ ํตํด์ dfs๋ก ํ์ํด์ค๋๋ค.
๊ทธ๋ ๊ฒ ์น๊ตฌ ๊ด๊ณ์ธ N๋ช ์ ์ฌ๋๋ค์
friends
๋ผ๋ ๋ฐฐ์ด์ ๋ฃ๊ณ , ์ต์ ๋น์ฉ์ ๊ตฌํด์ฃผ๋ฉด ๋ฉ๋๋ค.๋ชจ๋ ๊ด๊ณ์ ๋ํ์ฌ ์ต์๋น์ฉ์ ํฉํ ๊ฐ์ธ
total
์ด k๊ฐ์ ๋์ผ๋ฉด "oh no"๋ฅผ ์ถ๋ ฅํ๊ณ , ์๋์ผ๋ฉดtotal
์ ์ถ๋ ฅํด์ฃผ๋ฉด ๋ฉ๋๋ค.๐ ์๋กญ๊ฒ ์๊ฒ๋ ๋ด์ฉ