[백준 14676] 영우는 사기꾼?

Junyoung Park·2022년 3월 19일
0

코딩테스트

목록 보기
282/631
post-thumbnail

1. 문제 설명

영우는 사기꾼?

2. 문제 분석

위상 정렬의 in_degree를 활용한다. 해당 노드가 '존재'한다면 곧 삽입 가능한지 확인(in_degree가 0인지)하고, '삭제'한다면 그 노드가 필요한(즉 tail인) 다른 노드의 in_degree를 1씩 증가시킨다.

3. 나의 풀이

import sys
from collections import deque

n, m, k = map(int, sys.stdin.readline().rstrip().split())
nodes = [[] for _ in range(n+1)]
in_degree = [0 for _ in range(n+1)]
play = [0 for _ in range(n+1)]

for _ in range(m):
    x, y = map(int, sys.stdin.readline().rstrip().split())
    nodes[x].append(y)
    in_degree[y] += 1

is_possible = True
for _ in range(k):
    cmd, a = map(int, sys.stdin.readline().rstrip().split())
    if cmd == 1:
        if in_degree[a] == 0:
            play[a] += 1
            if play[a] == 1:
                # in_degree 0인 노드이므로 연결 노드의 in_degree를 1 감소
                for next_node in nodes[a]:
                    in_degree[next_node] -= 1
        else:
            is_possible = False
            break
    else:
        if play[a] == 0:
            is_possible = False
            break
        else:
            play[a] -= 1
            if play[a] == 0:
                # 해당 노드가 존재하지 않으므로 해당 노드가 필요한 연결 노드의 in_degree를 1 증가
                for next_node in nodes[a]:
                    in_degree[next_node] += 1

if is_possible: print("King-God-Emperor")
else: print("Lier!")
profile
JUST DO IT

0개의 댓글