結果

問題 No.1610 She Loves Me, She Loves Me Not, ...
ユーザー tamatotamato
提出日時 2021-07-21 21:27:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 918 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,776 KB
実行使用メモリ 73,216 KB
最終ジャッジ日時 2024-07-17 16:02:04
合計ジャッジ時間 3,534 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,016 KB
testcase_01 AC 49 ms
59,776 KB
testcase_02 AC 45 ms
54,272 KB
testcase_03 AC 41 ms
54,144 KB
testcase_04 AC 42 ms
54,272 KB
testcase_05 AC 67 ms
71,808 KB
testcase_06 AC 70 ms
73,216 KB
testcase_07 AC 67 ms
71,808 KB
testcase_08 AC 67 ms
71,808 KB
testcase_09 AC 68 ms
72,576 KB
testcase_10 AC 67 ms
72,320 KB
testcase_11 AC 69 ms
72,448 KB
testcase_12 AC 65 ms
71,552 KB
testcase_13 AC 69 ms
71,936 KB
testcase_14 AC 43 ms
55,296 KB
testcase_15 AC 42 ms
55,040 KB
testcase_16 AC 43 ms
55,040 KB
testcase_17 AC 43 ms
54,912 KB
testcase_18 AC 42 ms
54,912 KB
testcase_19 AC 41 ms
55,296 KB
testcase_20 AC 42 ms
55,040 KB
testcase_21 AC 42 ms
54,656 KB
testcase_22 AC 42 ms
54,912 KB
testcase_23 AC 42 ms
54,272 KB
testcase_24 AC 41 ms
54,016 KB
testcase_25 AC 41 ms
54,016 KB
testcase_26 AC 41 ms
53,760 KB
testcase_27 AC 40 ms
53,760 KB
testcase_28 AC 41 ms
54,016 KB
testcase_29 AC 41 ms
53,760 KB
testcase_30 AC 40 ms
53,760 KB
testcase_31 AC 40 ms
53,760 KB
testcase_32 AC 41 ms
54,144 KB
testcase_33 AC 40 ms
54,016 KB
testcase_34 AC 41 ms
54,272 KB
testcase_35 AC 40 ms
54,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    from collections import deque
    input = sys.stdin.readline

    N, M = map(int, input().split())
    adj = [[] for _ in range(N+1)]
    deg = [0] * (N+1)
    for _ in range(M):
        a, b = map(int, input().split())
        deg[a] += 1
        deg[b] += 1
        adj[a].append(b)
        adj[b].append(a)

    que = deque()
    cnt = 0
    for v in range(1, N+1):
        if deg[v] == 1:
            que.append(v)
    seen = [0] * (N+1)
    while que:
        v = que.popleft()
        seen[v] = 1
        cnt += 1
        flg = 0
        for u in adj[v]:
            if not seen[u]:
                deg[u] -= 1
                if deg[u] == 1:
                    que.append(u)
                flg = 1
        if not flg:
            cnt -= 1
    if cnt & 1:
        print("Yes")
    else:
        print("No")


if __name__ == '__main__':
    main()
0