結果

問題 No.2674 k-Walk on Bipartite
ユーザー tassei903tassei903
提出日時 2024-03-15 22:22:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 514 ms / 2,000 ms
コード長 1,651 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 101,428 KB
最終ジャッジ日時 2024-09-30 01:46:53
合計ジャッジ時間 7,023 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,864 KB
testcase_01 AC 37 ms
53,260 KB
testcase_02 AC 40 ms
53,472 KB
testcase_03 AC 38 ms
53,384 KB
testcase_04 AC 35 ms
52,332 KB
testcase_05 AC 35 ms
52,444 KB
testcase_06 AC 39 ms
52,808 KB
testcase_07 AC 271 ms
94,232 KB
testcase_08 AC 366 ms
93,344 KB
testcase_09 AC 157 ms
92,548 KB
testcase_10 AC 438 ms
97,140 KB
testcase_11 AC 301 ms
91,456 KB
testcase_12 AC 440 ms
94,556 KB
testcase_13 AC 161 ms
90,856 KB
testcase_14 AC 87 ms
83,808 KB
testcase_15 AC 475 ms
99,812 KB
testcase_16 AC 335 ms
95,484 KB
testcase_17 AC 364 ms
92,704 KB
testcase_18 AC 109 ms
85,812 KB
testcase_19 AC 178 ms
91,592 KB
testcase_20 AC 156 ms
92,016 KB
testcase_21 AC 384 ms
94,592 KB
testcase_22 AC 514 ms
101,428 KB
testcase_23 AC 37 ms
53,504 KB
testcase_24 AC 36 ms
53,448 KB
testcase_25 AC 36 ms
52,992 KB
testcase_26 AC 37 ms
53,076 KB
testcase_27 AC 35 ms
53,084 KB
testcase_28 AC 36 ms
53,544 KB
testcase_29 AC 36 ms
52,832 KB
testcase_30 AC 36 ms
52,404 KB
testcase_31 AC 34 ms
52,984 KB
testcase_32 AC 35 ms
52,508 KB
testcase_33 AC 36 ms
52,944 KB
testcase_34 AC 35 ms
52,400 KB
testcase_35 AC 34 ms
53,408 KB
testcase_36 AC 34 ms
53,184 KB
testcase_37 AC 36 ms
52,352 KB
testcase_38 AC 35 ms
53,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################

n, m = na()
s,t,k = na()
s -= 1
t -= 1

g = [[] for i in range(n)]
for i in range(m):
    a, b = na()
    g[a-1].append(b-1)
    g[b-1].append(a-1)

if n == 1:
    No()
    exit()

if n == 2:
    if s == t and m >= 1:
        if k % 2 == 0:
            Yes()
        else:
            No()
    elif s == t and m == 0:
        if k % 2 == 0:
            print("Unknown")
        else:
            No()
    elif s != t and m >= 1:
        if k % 2:
            Yes()
        else:
            No()
    else:
        if k % 2:
            print("Unknown")
        else:
            No()
    exit()


from heapq import *
INF = 10**18
def dijkstra(g, s, n):
    dist = [INF]*n
    hq = [(0, s)]
    dist[s] = 0
    while hq:
        d, v = heappop(hq)
        if dist[v]!=d:
            continue
        for to in g[v]:
            c = 1
            if dist[v] + c < dist[to]:
                dist[to] = dist[v] + c
                heappush(hq, (dist[to], to))
    return dist

dist = dijkstra(g, s, n)

if s == t:
    if len(g[s]) == 0:
        No()
    else:
        if k % 2:
            Yes()
        else:
            No()
    exit()


if dist[t] != INF and (dist[t]-k)%2:
    No()
    exit()
if dist[t] == INF:
    print("Unknown")
    exit()
if dist[t] <= k:
    Yes()
else:
    print("Unknown")
0