일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Python
- 2579
- HTML
- baekjun
- bootstrap
- 라즈비안
- 파이썬
- 백준
- 2909
- MongoDB
- algotythm
- 트리
- 16.04
- 라즈베리파이
- 크롤링
- NAV
- springboot3.x
- 라즈베리파이3
- dynaminprogramming
- raspberrypi
- 라즈베리파이3b+
- ubuntu
- dp
- CSS
- 알고리즘
- 13237
- Algorythm
- Crawling
- node.js
- nav-tab
Archives
- Today
- Total
노트
[백준] 14267번 회사 문화 1 python 본문
import sys
sys.setrecursionlimit(10 ** 6)
a,b = map(int,input().split())
boss = list(map(int,input().split()))
gujo = [[] for _ in range(a)]
my_boss = [0]*(a+1)
ans = [0]*(a+1)
for i in range(1,a):
if boss[i]!=-1:
gujo[boss[i]].append(i+1)
my_boss[i+1]=boss[i]
def tamsaek(k):
ans[k] += ans[my_boss[k]]
if k<a and gujo[k]:
for j in range(len(gujo[k])):
tamsaek(gujo[k][j])
for i in range(b):
x,y = map(int, input().split())
ans[x] += y
tamsaek(1)
ans.pop(0)
print(*ans)
'알고리즘' 카테고리의 다른 글
[백준] 2644번 촌수계산 python (0) | 2023.07.01 |
---|---|
[백준] 18429번 근손실 python (0) | 2023.06.23 |
[백준] 28224번 Final Price python (0) | 2023.06.17 |
[백준] 27962번 오렌지먹은지오랜지 python (0) | 2023.06.09 |
[백준] 17952번 과제는 끝나지 않아! python (0) | 2023.06.01 |
Comments