結果

問題 No.826 連絡網
ユーザー rlangevinrlangevin
提出日時 2023-02-08 08:54:43
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 874 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 81,844 KB
実行使用メモリ 88,784 KB
最終ジャッジ日時 2024-07-05 22:51:46
合計ジャッジ時間 4,757 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
61,204 KB
testcase_01 AC 42 ms
55,412 KB
testcase_02 AC 57 ms
66,480 KB
testcase_03 AC 68 ms
72,316 KB
testcase_04 AC 82 ms
78,528 KB
testcase_05 AC 65 ms
71,328 KB
testcase_06 AC 65 ms
70,184 KB
testcase_07 AC 73 ms
74,544 KB
testcase_08 AC 65 ms
71,828 KB
testcase_09 AC 72 ms
74,508 KB
testcase_10 AC 59 ms
68,700 KB
testcase_11 AC 66 ms
71,452 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

def bfs(G, s, N):
    Q = deque([])
    dist = [-1] * N
    par = [-1] * N
    sz = [1] * N
    dist[s] = 0
    rev = [0] * N
    for u in G[s]:
        par[u] = s
        dist[u] = 1
        sz[u] += sz[s]
        Q.append(u)
 
    while Q:
        u = Q.popleft()
        for v in G[u]:
            if dist[v] != -1:
                continue
            if v < u:
                rev[v] = rev[u] + 1
            else:
                rev[v] = rev[u]
            dist[v] = dist[u] + 1
            par[v] = u
            sz[v] += sz[u]
            Q.append(v)
            
    return dist


N, P = map(int, input().split())
G = [[] for i in range(N + 1)]
for i in range(2, N):
    for j in range(i, N + 1, i):
        if j + i <= N:
            G[j].append(j + i)
            G[j + i].append(j)

D = bfs(G, P, N + 1)
print(N + 1 - D.count(-1))
0