結果

問題 No.1610 She Loves Me, She Loves Me Not, ...
ユーザー wolgnikwolgnik
提出日時 2021-07-21 21:29:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 600 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 78,320 KB
最終ジャッジ日時 2024-07-17 16:09:31
合計ジャッジ時間 3,813 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,700 KB
testcase_01 AC 76 ms
76,440 KB
testcase_02 AC 38 ms
53,744 KB
testcase_03 AC 39 ms
53,268 KB
testcase_04 AC 39 ms
54,320 KB
testcase_05 AC 148 ms
78,092 KB
testcase_06 AC 146 ms
78,056 KB
testcase_07 AC 144 ms
78,320 KB
testcase_08 AC 140 ms
78,072 KB
testcase_09 AC 140 ms
77,936 KB
testcase_10 AC 142 ms
78,016 KB
testcase_11 AC 148 ms
78,260 KB
testcase_12 AC 141 ms
78,116 KB
testcase_13 AC 146 ms
77,896 KB
testcase_14 AC 49 ms
61,236 KB
testcase_15 AC 49 ms
61,732 KB
testcase_16 AC 50 ms
63,796 KB
testcase_17 AC 49 ms
62,276 KB
testcase_18 AC 50 ms
62,412 KB
testcase_19 AC 47 ms
60,976 KB
testcase_20 AC 49 ms
62,844 KB
testcase_21 AC 50 ms
62,124 KB
testcase_22 AC 49 ms
61,608 KB
testcase_23 AC 39 ms
53,384 KB
testcase_24 AC 41 ms
54,244 KB
testcase_25 AC 40 ms
53,496 KB
testcase_26 AC 39 ms
53,376 KB
testcase_27 AC 41 ms
53,500 KB
testcase_28 AC 39 ms
53,816 KB
testcase_29 AC 39 ms
53,412 KB
testcase_30 AC 39 ms
52,772 KB
testcase_31 AC 39 ms
53,228 KB
testcase_32 AC 40 ms
53,120 KB
testcase_33 AC 39 ms
53,512 KB
testcase_34 AC 39 ms
52,876 KB
testcase_35 AC 39 ms
53,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N, M = map(int, input().split())
e = [[] for _ in range(N + 1)]
inc = [0] * (N + 1)
for _ in range(M):
  u, v = map(int, input().split())
  e[u].append(v)
  e[v].append(u)
  inc[u] += 1
  inc[v] += 1

import heapq
hpush = heapq.heappush
hpop = heapq.heappop
h = []
for x in range(1, N + 1):
  hpush(h, (inc[x], x))
res = 0

while len(h):
  c, x = hpop(h)
  if inc[x] != c:
    hpush(h, (inc[x], x))
    continue
  if c != 1: continue
  for y in e[x]:
    inc[y] -= 1
    hpush(h, (inc[y], y))
  inc[x] = 0
  res += 1
  
if res & 1: print("Yes")
else: print("No")
0