CSES - NOI 2024 - Results
Submission details
Task:Anime Shops
Sender:Elias Gjedde-Grundtvig
Submission time:2024-03-06 18:37:50 +0200
Language:CPython3
Status:READY
Result:23
Feedback
groupverdictscore
#1ACCEPTED23
#20
#30
Test results
testverdicttimegroup
#1ACCEPTED0.03 s1, 3details
#2ACCEPTED0.04 s1, 3details
#3ACCEPTED0.07 s1, 3details
#4ACCEPTED0.43 s1, 3details
#5ACCEPTED0.80 s3details
#6--3details
#7--3details
#8--3details
#9ACCEPTED0.39 s2, 3details
#10--2, 3details
#11--2, 3details
#12ACCEPTED0.49 s3details
#13--3details
#14--3details
#15--3details
#16ACCEPTED0.44 s3details

Code

import random

n, m, k = map(int, input().split())

shops = list(map(int, input().split()))
adj = [[] for _ in range(n+1)]
for i in range(m):
    a, b = map(int, input().split())
    adj[a].append(b)
    adj[b].append(a)

def m1(n, m, k, shops, adj):
    dst = [-1]*(n+1)
    frm = [-1]*(n+1)
    shopmark = [False]*(n+1)
    for s in shops:
        frm[s] = s
        shopmark[s] = True
    
    cur = list(shops)
    while cur:
        nxt = []
        for i in cur:
            for j in adj[i]:
                if dst[j] == -1:
                    if not shopmark[j]:
                        dst[j] = 0 if shopmark[i] else dst[i] + 1
                        frm[j] = frm[i]
                        nxt.append(j)
                    elif frm[i] != frm[j]:
                        dst[j] = 0 if shopmark[i] else dst[i] + 1
                elif frm[i] != frm[j]:
                    d = dst[i]+dst[j]+2
                    if dst[frm[j]] == -1 or dst[frm[j]] > d:
                        dst[frm[j]] = d
        cur = nxt
    
    return " ".join([str(x+1 if x!=-1 else x) for x in dst[1:]])

def m2(n, m, k, shops, adj):
    dst = [-1]*(n+1)
    for s in shops:
        cur = [s]
        v=[False]*(n+1)
        d = 1
        while cur:
            nxt = []
            for i in cur:
                for j in adj[i]:
                    if not v[j]:
                        if (dst[j] > d or dst[j] == -1) and j != s:
                            dst[j] = d
                        nxt.append(j)
                        v[j]=True
            d += 1
            cur = nxt
    return " ".join([str(x) for x in dst[1:]])
"""
n = 4
k = 3
shops = [1, 2, 3]
while True:
    adj = [[] for _ in range(n+1)]
    m = 0
    for i in range(n):
        a = random.randrange(1, n+1)
        b = random.randrange(1, n)
        if b >= a:
            b += 1
        if a not in adj[b]:
            m += 1
            adj[b].append(a)
            adj[a].append(b)
    if m2(n, m, k, shops, adj) != m1(n, m, k, shops, adj):
        print(adj)
        exit()
"""
if all(i+1 in adj[i] for i in range(n-1)) and m == n-1:
     print(m1(n, m, k, shops, adj))
else:
    print(m2(n, m, k, shops, adj))

Test details

Test 1

Group: 1, 3

Verdict: ACCEPTED

input
1000 2000 1
816
1 868
976 995
377 536
...

correct output
4 3 3 4 6 4 -1 4 5 2 2 5 5 3 5...

user output
4 3 3 4 6 4 -1 4 5 2 2 5 5 3 5...
Truncated

Test 2

Group: 1, 3

Verdict: ACCEPTED

input
1000 2000 20
578 955 222 813 494 962 753 71...

correct output
5 6 4 3 4 2 -1 3 3 3 4 3 2 3 -...

user output
5 6 4 3 4 2 -1 3 3 3 4 3 2 3 -...
Truncated

Test 3

Group: 1, 3

Verdict: ACCEPTED

input
1000 2000 100
945 230 119 680 975 520 490 28...

correct output
2 2 3 -1 2 -1 3 2 2 1 2 -1 3 2...

user output
2 2 3 -1 2 -1 3 2 2 1 2 -1 3 2...
Truncated

Test 4

Group: 1, 3

Verdict: ACCEPTED

input
1000 2000 1000
150 443 960 545 218 487 896 38...

correct output
1 -1 1 1 -1 1 1 1 -1 1 1 1 -1 ...

user output
1 -1 1 1 -1 1 1 1 -1 1 1 1 -1 ...
Truncated

Test 5

Group: 3

Verdict: ACCEPTED

input
100000 200000 1
77222
59470 61811
43092 48939
14395 19964
...

correct output
8 10 8 8 8 8 8 8 9 7 7 8 8 8 6...

user output
8 10 8 8 8 8 8 8 9 7 7 8 8 8 6...
Truncated

Test 6

Group: 3

Verdict:

input
100000 200000 20
70440 82302 64483 96767 51485 ...

correct output
-1 8 6 5 5 7 6 7 6 6 8 5 6 4 5...

user output
(empty)

Test 7

Group: 3

Verdict:

input
100000 200000 100
68738 37820 55519 77758 46482 ...

correct output
4 5 5 5 5 4 6 -1 5 4 5 6 4 5 5...

user output
(empty)

Test 8

Group: 3

Verdict:

input
100000 200000 100000
47137 80137 73347 78145 9205 6...

correct output
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

user output
(empty)

Test 9

Group: 2, 3

Verdict: ACCEPTED

input
100000 99999 1
44158
1 2
2 3
3 4
...

correct output
44157 44156 44155 44154 44153 ...

user output
44157 44156 44155 44154 44153 ...
Truncated

Test 10

Group: 2, 3

Verdict:

input
100000 99999 20
44158 25720 84658 90057 99607 ...

correct output
361 360 359 358 357 356 355 35...

user output
(empty)

Test 11

Group: 2, 3

Verdict:

input
100000 99999 100000
44158 25720 84658 90057 99607 ...

correct output
1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

user output
(empty)

Test 12

Group: 3

Verdict: ACCEPTED

input
100000 99999 3
99998 99999 100000
1 2
1 3
1 4
...

correct output
33333 33332 33332 33332 33331 ...

user output
33333 33332 33332 33332 33331 ...
Truncated

Test 13

Group: 3

Verdict:

input
100000 99999 300
99701 99702 99703 99704 99705 ...

correct output
333 333 333 333 333 333 333 33...

user output
(empty)

Test 14

Group: 3

Verdict:

input
100000 99999 30000
70001 70002 70003 70004 70005 ...

correct output
3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 ...

user output
(empty)

Test 15

Group: 3

Verdict:

input
100000 0 100000
1 2 3 4 5 6 7 8 9 10 11 12 13 ...

correct output
-1 -1 -1 -1 -1 -1 -1 -1 -1 -1 ...

user output
(empty)

Test 16

Group: 3

Verdict: ACCEPTED

input
100000 100000 2
1 50001
1 2
2 3
3 4
...

correct output
50000 1 2 3 4 5 6 7 8 9 10 11 ...

user output
50000 1 2 3 4 5 6 7 8 9 10 11 ...
Truncated