# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
526517 | 2022-02-15T05:59:19 Z | bebecanvas | Lost Array (NOI19_lostarray) | C++14 | 0 ms | 0 KB |
s = input().split(' ') N = int(s[0]) M = int(s[1]) x = [0] * N for i in range(M): ans = input().split(' ') A = int(ans[0]) - 1 B = int(ans[1]) - 1 C = int(ans[2]) x[A] = max(x[A], C) x[B] = max(x[B], C) output = '' for i in x: output = output + str(i) + ' ' print(output)