n,k,m = map(int, input().split())
imp = list(map(int, input().split()))
edges = [[] for i in range(200001)]
for i in range(m):
a,b,c = map(int, input().split())
edges[a].append([b,c])
edges[b].append([a,c])
dists = [[1000000000 for i in range(200001)] for i in range(5)]
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
63 ms |
34680 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
818 ms |
83320 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
117 ms |
37284 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
871 ms |
82164 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
778 ms |
82224 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |