結果

問題 No.583 鉄道同好会
ユーザー titiatitia
提出日時 2024-05-22 02:40:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 439 ms / 2,000 ms
コード長 948 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-05-22 02:40:06
合計ジャッジ時間 4,199 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
11,008 KB
testcase_01 AC 26 ms
11,008 KB
testcase_02 AC 27 ms
10,880 KB
testcase_03 AC 27 ms
10,880 KB
testcase_04 AC 29 ms
10,880 KB
testcase_05 AC 28 ms
10,880 KB
testcase_06 AC 27 ms
10,880 KB
testcase_07 AC 27 ms
10,880 KB
testcase_08 AC 50 ms
10,880 KB
testcase_09 AC 26 ms
10,880 KB
testcase_10 AC 29 ms
10,880 KB
testcase_11 AC 144 ms
10,880 KB
testcase_12 AC 166 ms
10,880 KB
testcase_13 AC 169 ms
11,008 KB
testcase_14 AC 166 ms
10,880 KB
testcase_15 AC 205 ms
10,752 KB
testcase_16 AC 407 ms
10,880 KB
testcase_17 AC 439 ms
10,880 KB
testcase_18 AC 425 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())

# UnionFind

Group = [i for i in range(N+1)] # グループ分け
Nodes = [1]*(N+1) # 各グループのノードの数

def find(x):
    while Group[x] != x:
        x=Group[x]
    return x

def Union(x,y):
    if find(x) != find(y):
        if Nodes[find(x)] < Nodes[find(y)]:
            
            Nodes[find(y)] += Nodes[find(x)]
            Nodes[find(x)] = 0
            Group[find(x)] = find(y)
            
        else:
            Nodes[find(x)] += Nodes[find(y)]
            Nodes[find(y)] = 0
            Group[find(y)] = find(x)

EDGE=[0]*(N+1)
USED=[0]*(N+1)

for i in range(M):
    x,y=map(int,input().split())
    Union(x,y)
    EDGE[x]+=1
    EDGE[y]+=1
    USED[x]=1
    USED[y]=1

f=USED.index(1)
for i in range(N+1):
    if USED[i]==1 and find(i)!=find(f):
        print("NO")
        exit()

ki=0
for x in EDGE:
    if x%2==1:
        ki+=1

if ki>=3:
    print("NO")
    exit()

print("YES")

0