| Task: | Chair Game |
| Sender: | Kristófer Helgi Antonsson |
| Submission time: | 2024-03-06 19:05:11 +0200 |
| Language: | Python3 (CPython3) |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | RUNTIME ERROR | 0 |
| #2 | RUNTIME ERROR | 0 |
| #3 | RUNTIME ERROR | 0 |
| #4 | RUNTIME ERROR | 0 |
| #5 | RUNTIME ERROR | 0 |
| #6 | RUNTIME ERROR | 0 |
| #7 | RUNTIME ERROR | 0 |
| #8 | RUNTIME ERROR | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | RUNTIME ERROR | 0.02 s | 1, 7, 8 | details |
| #2 | RUNTIME ERROR | 0.02 s | 1, 7, 8 | details |
| #3 | RUNTIME ERROR | 0.02 s | 1, 7, 8 | details |
| #4 | RUNTIME ERROR | 0.02 s | 1, 7, 8 | details |
| #5 | RUNTIME ERROR | 0.02 s | 1, 7, 8 | details |
| #6 | RUNTIME ERROR | 0.02 s | 7, 8 | details |
| #7 | RUNTIME ERROR | 0.02 s | 7, 8 | details |
| #8 | RUNTIME ERROR | 0.02 s | 2, 8 | details |
| #9 | RUNTIME ERROR | 0.02 s | 3, 4, 5, 6, 8 | details |
| #10 | RUNTIME ERROR | 0.02 s | 3, 4, 5, 6, 8 | details |
| #11 | RUNTIME ERROR | 0.02 s | 3, 4, 5, 6, 8 | details |
| #12 | RUNTIME ERROR | 0.02 s | 3, 4, 5, 6, 8 | details |
| #13 | RUNTIME ERROR | 0.02 s | 4, 5, 6, 7, 8 | details |
| #14 | RUNTIME ERROR | 0.02 s | 4, 5, 6, 8 | details |
| #15 | RUNTIME ERROR | 0.02 s | 4, 5, 6, 8 | details |
| #16 | RUNTIME ERROR | 0.02 s | 4, 5, 6, 8 | details |
| #17 | RUNTIME ERROR | 0.02 s | 5, 6, 7, 8 | details |
| #18 | RUNTIME ERROR | 0.02 s | 5, 6, 8 | details |
| #19 | RUNTIME ERROR | 0.02 s | 5, 6, 8 | details |
| #20 | RUNTIME ERROR | 0.02 s | 5, 6, 8 | details |
| #21 | RUNTIME ERROR | 0.02 s | 1, 6, 7, 8 | details |
| #22 | RUNTIME ERROR | 0.02 s | 6, 7, 8 | details |
| #23 | RUNTIME ERROR | 0.02 s | 6, 8 | details |
| #24 | RUNTIME ERROR | 0.02 s | 6, 8 | details |
| #25 | RUNTIME ERROR | 0.02 s | 8 | details |
| #26 | RUNTIME ERROR | 0.02 s | 8 | details |
| #27 | RUNTIME ERROR | 0.02 s | 3, 4, 5, 6, 8 | details |
| #28 | RUNTIME ERROR | 0.02 s | 8 | details |
| #29 | RUNTIME ERROR | 0.02 s | 8 | details |
| #30 | RUNTIME ERROR | 0.02 s | 8 | details |
Code
import sys
sys.setrecursionlimit(100000000)
# def search(shops, route, tj):
# tj+=1
# for i in shops:
# if i in route:
# return tj
# if tj > m:
# return -1
# else:
# svar = []
# for y in route:
# sr = search(shops, routes[y], tj)
# if sr != -1:
# svar.append(sr)
# if len(svar) > 0:
# return min(svar)
# else:
# return -1
n,m,k = map(int, input().split())
if k != 0:
shops = [int(i)-1 for i in input().split()]
stist = [10000000000 for i in range(n)]
if n == 1:
print(-1)
exit()
routes = {}
for i in range(n):
routes[i] = []
for i in range(m):
a,b = map(int, input().split())
a-=1
b-=1
routes[a].append(b)
routes[b].append(a)
telj = 0
for y in range(min(shops), n):
if y in shops:
telj = 0
if telj < stist[y]:
stist[y] = telj
else:
telj += 1
if telj < stist[y]:
stist[y] = telj
telj = 0
for y in range(max(shops), -1, -1):
if y in shops:
telj = 0
if telj < stist[y]:
stist[y] = telj
else:
telj += 1
if telj < stist[y]:
stist[y] = telj
telj = 0
for y in range(min(shops)-1, -1, -1):
telj += 1
if telj < stist[y]:
stist[y] = telj
last = min(shops)
for i in range(1, len(shops)):
milli = abs(last - shops[i])
if milli < stist[last] or stist[last] == 0:
stist[last] = milli
if milli < stist[shops[i]] or stist[shops[i]] == 0:
stist[shops[i]] = milli
last = shops[i]
for i in range(len(stist)):
if stist[i] == 0:
stist[i] = -1
print(*stist)
Test details
Test 1
Group: 1, 7, 8
Verdict: RUNTIME ERROR
| input |
|---|
| 637 1 1 2 1 1 ... |
| correct output |
|---|
| YES 1 YES 1 1 YES ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 22, in <module>
n...Test 2
Group: 1, 7, 8
Verdict: RUNTIME ERROR
| input |
|---|
| 246 7 1 1 1 1 1 1 1 7 1 1 2 1 1 7 1 ... |
| correct output |
|---|
| YES 1 1 1 1 1 1 1 YES 1 1 1 1 2 7 1 YES ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 22, in <module>
n...Test 3
Group: 1, 7, 8
Verdict: RUNTIME ERROR
| input |
|---|
| 810 8 1 1 1 1 1 1 1 1 8 1 1 1 8 1 1 2 1 ... |
| correct output |
|---|
| YES 1 1 1 1 1 1 1 1 YES 1 1 2 8 1 1 1 1 YES ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 22, in <module>
n...Test 4
Group: 1, 7, 8
Verdict: RUNTIME ERROR
| input |
|---|
| 1000 8 8 8 5 2 8 7 6 5 8 6 5 2 2 8 2 1 6 ... |
| correct output |
|---|
| NO YES 8 2 2 6 2 5 1 6 NO NO ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 22, in <module>
n...Test 5
Group: 1, 7, 8
Verdict: RUNTIME ERROR
| input |
|---|
| 1000 8 2 1 7 7 2 3 8 2 8 4 1 5 4 7 3 5 3 ... |
| correct output |
|---|
| YES 7 2 2 7 1 3 8 2 YES 4 4 7 3 3 5 5 1 YES ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 22, in <module>
n...Test 6
Group: 7, 8
Verdict: RUNTIME ERROR
| input |
|---|
| 1000 16 15 16 6 4 14 2 1 6 2 16 10 2 9... |
| correct output |
|---|
| NO NO NO NO NO ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 22, in <module>
n...Test 7
Group: 7, 8
Verdict: RUNTIME ERROR
| input |
|---|
| 1000 16 2 4 13 6 8 16 12 8 16 5 9 5 9 ... |
| correct output |
|---|
| YES 13 5 2 8 12 2 8 5 16 16 9 6 9 ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 22, in <module>
n...Test 8
Group: 2, 8
Verdict: RUNTIME ERROR
| input |
|---|
| 1000 1 1 2 1 2 ... |
| correct output |
|---|
| YES 1 NO YES 3 1 2 ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 22, in <module>
n...Test 9
Group: 3, 4, 5, 6, 8
Verdict: RUNTIME ERROR
| input |
|---|
| 988 1 1 2 1 1 ... |
| correct output |
|---|
| YES 1 YES 1 1 YES ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 22, in <module>
n...Test 10
Group: 3, 4, 5, 6, 8
Verdict: RUNTIME ERROR
| input |
|---|
| 199 1 1 2 1 1 ... |
| correct output |
|---|
| YES 1 YES 1 1 YES ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 22, in <module>
n...Test 11
Group: 3, 4, 5, 6, 8
Verdict: RUNTIME ERROR
| input |
|---|
| 1000 100 1 1 1 2 1 1 2 2 1 1 1 1 1 2 1 ... |
| correct output |
|---|
| NO NO NO NO NO ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 22, in <module>
n...Test 12
Group: 3, 4, 5, 6, 8
Verdict: RUNTIME ERROR
| input |
|---|
| 1000 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
| correct output |
|---|
| YES 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 22, in <module>
n...Test 13
Group: 4, 5, 6, 7, 8
Verdict: RUNTIME ERROR
| input |
|---|
| 963 1 1 2 1 1 ... |
| correct output |
|---|
| YES 1 YES 1 1 YES ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 22, in <module>
n...Test 14
Group: 4, 5, 6, 8
Verdict: RUNTIME ERROR
| input |
|---|
| 979 1 1 2 1 1 ... |
| correct output |
|---|
| YES 1 YES 1 1 YES ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 22, in <module>
n...Test 15
Group: 4, 5, 6, 8
Verdict: RUNTIME ERROR
| input |
|---|
| 1000 100 3 3 1 2 1 1 2 3 1 3 2 1 1 3 1 ... |
| correct output |
|---|
| NO NO NO NO NO ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 22, in <module>
n...Test 16
Group: 4, 5, 6, 8
Verdict: RUNTIME ERROR
| input |
|---|
| 1000 100 1 2 2 2 2 1 1 1 2 3 1 1 3 2 1 ... |
| correct output |
|---|
| YES 2 2 2 3 1 2 3 1 2 3 1 3 1 3 1 ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 22, in <module>
n...Test 17
Group: 5, 6, 7, 8
Verdict: RUNTIME ERROR
| input |
|---|
| 980 1 1 2 1 1 ... |
| correct output |
|---|
| YES 1 YES 1 1 YES ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 22, in <module>
n...Test 18
Group: 5, 6, 8
Verdict: RUNTIME ERROR
| input |
|---|
| 947 1 1 2 1 1 ... |
| correct output |
|---|
| YES 1 YES 1 1 YES ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 22, in <module>
n...Test 19
Group: 5, 6, 8
Verdict: RUNTIME ERROR
| input |
|---|
| 1000 100 1 2 4 2 1 3 1 2 2 3 1 1 3 1 4 ... |
| correct output |
|---|
| NO NO NO NO NO ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 22, in <module>
n...Test 20
Group: 5, 6, 8
Verdict: RUNTIME ERROR
| input |
|---|
| 1000 100 3 4 4 4 4 4 4 3 3 3 4 4 2 3 3 ... |
| correct output |
|---|
| YES 4 2 4 4 1 3 4 2 4 2 3 4 2 4 4 ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 22, in <module>
n...Test 21
Group: 1, 6, 7, 8
Verdict: RUNTIME ERROR
| input |
|---|
| 715 1 1 2 1 1 ... |
| correct output |
|---|
| YES 1 YES 1 1 YES ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 22, in <module>
n...Test 22
Group: 6, 7, 8
Verdict: RUNTIME ERROR
| input |
|---|
| 843 1 1 2 1 1 ... |
| correct output |
|---|
| YES 1 YES 1 1 YES ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 22, in <module>
n...Test 23
Group: 6, 8
Verdict: RUNTIME ERROR
| input |
|---|
| 1000 100 3 4 5 1 4 4 2 3 2 3 4 1 1 1 2 ... |
| correct output |
|---|
| NO NO NO NO NO ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 22, in <module>
n...Test 24
Group: 6, 8
Verdict: RUNTIME ERROR
| input |
|---|
| 1000 100 5 3 4 3 5 3 3 5 5 4 5 5 5 5 2 ... |
| correct output |
|---|
| YES 4 4 5 5 2 4 4 5 3 5 5 2 5 5 2 ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 22, in <module>
n...Test 25
Group: 8
Verdict: RUNTIME ERROR
| input |
|---|
| 1000 100 88 70 59 44 28 10 19 19 42 16 ... |
| correct output |
|---|
| NO NO NO NO NO ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 22, in <module>
n...Test 26
Group: 8
Verdict: RUNTIME ERROR
| input |
|---|
| 1000 100 31 72 52 30 77 56 79 10 88 11 ... |
| correct output |
|---|
| YES 31 62 14 10 66 63 1 82 37 92 3... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 22, in <module>
n...Test 27
Group: 3, 4, 5, 6, 8
Verdict: RUNTIME ERROR
| input |
|---|
| 1000 1 1 2 1 1 ... |
| correct output |
|---|
| YES 1 YES 1 1 YES ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 22, in <module>
n...Test 28
Group: 8
Verdict: RUNTIME ERROR
| input |
|---|
| 1000 1 1 2 2 2 ... |
| correct output |
|---|
| YES 1 YES 2 2 YES ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 22, in <module>
n...Test 29
Group: 8
Verdict: RUNTIME ERROR
| input |
|---|
| 1000 100 87 81 29 35 8 98 77 50 46 34 5... |
| correct output |
|---|
| YES 34 74 25 91 80 18 95 26 88 12 ... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 22, in <module>
n...Test 30
Group: 8
Verdict: RUNTIME ERROR
| input |
|---|
| 1000 100 65 92 39 22 67 41 17 65 97 71 ... |
| correct output |
|---|
| YES 9 38 24 59 69 24 63 3 22 35 24... |
| user output |
|---|
| (empty) |
Error:
Traceback (most recent call last):
File "/box/input/code.py", line 22, in <module>
n...