# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
526514 | bebecanvas | Lost Array (NOI19_lostarray) | C++14 | 0 ms | 0 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
s = input().split(' ')
N = int(s[0])
M = int(s[1])
querys = []
for i in range(M):
ans = input().split(' ')
A = int(ans[0]) - 1
B = int(ans[1]) - 1
C = int(ans[2])
querys.append([A, B, C])
x = [1] * N
for i in querys:
x[i[0]] = max(x[i[0]], i[2])
x[i[1]] = max(x[i[1]], i[2])
output = ''
for i in x:
output = output + str(i) + ' '
print(output)