結果

問題 No.483 マッチ並べ
ユーザー kohei2019kohei2019
提出日時 2022-07-27 00:50:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 791 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,000 KB
実行使用メモリ 56,472 KB
最終ジャッジ日時 2024-07-16 14:14:20
合計ジャッジ時間 4,055 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,744 KB
testcase_01 AC 39 ms
55,280 KB
testcase_02 AC 38 ms
54,228 KB
testcase_03 AC 40 ms
54,800 KB
testcase_04 AC 37 ms
55,432 KB
testcase_05 AC 40 ms
55,244 KB
testcase_06 AC 41 ms
54,676 KB
testcase_07 AC 41 ms
55,612 KB
testcase_08 AC 42 ms
54,252 KB
testcase_09 AC 41 ms
54,132 KB
testcase_10 AC 40 ms
54,588 KB
testcase_11 AC 39 ms
53,992 KB
testcase_12 AC 40 ms
54,472 KB
testcase_13 AC 41 ms
54,264 KB
testcase_14 AC 41 ms
54,580 KB
testcase_15 AC 39 ms
54,784 KB
testcase_16 AC 39 ms
54,864 KB
testcase_17 AC 40 ms
54,380 KB
testcase_18 AC 40 ms
53,980 KB
testcase_19 AC 39 ms
54,500 KB
testcase_20 AC 39 ms
54,112 KB
testcase_21 AC 39 ms
55,260 KB
testcase_22 AC 40 ms
54,180 KB
testcase_23 AC 40 ms
54,096 KB
testcase_24 AC 41 ms
54,436 KB
testcase_25 AC 40 ms
53,928 KB
testcase_26 AC 40 ms
54,188 KB
testcase_27 AC 43 ms
54,428 KB
testcase_28 AC 43 ms
55,548 KB
testcase_29 AC 40 ms
55,592 KB
testcase_30 AC 40 ms
55,460 KB
testcase_31 AC 42 ms
54,708 KB
testcase_32 AC 43 ms
54,976 KB
testcase_33 AC 41 ms
55,108 KB
testcase_34 AC 42 ms
55,196 KB
testcase_35 AC 41 ms
54,304 KB
testcase_36 AC 40 ms
54,656 KB
testcase_37 AC 42 ms
56,024 KB
testcase_38 AC 42 ms
54,312 KB
testcase_39 AC 41 ms
54,904 KB
testcase_40 AC 41 ms
56,104 KB
testcase_41 AC 40 ms
55,304 KB
testcase_42 AC 41 ms
55,180 KB
testcase_43 AC 42 ms
55,388 KB
testcase_44 AC 40 ms
55,000 KB
testcase_45 AC 39 ms
53,976 KB
testcase_46 AC 40 ms
54,240 KB
testcase_47 AC 41 ms
54,544 KB
testcase_48 AC 40 ms
56,472 KB
testcase_49 AC 40 ms
54,860 KB
testcase_50 AC 41 ms
55,064 KB
testcase_51 AC 42 ms
56,376 KB
testcase_52 AC 41 ms
55,428 KB
testcase_53 AC 40 ms
55,064 KB
testcase_54 AC 40 ms
55,268 KB
testcase_55 AC 39 ms
54,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
N = int(input())
lsg = collections.defaultdict(list)
node = []
for i in range(N):
    r1,c1,r2,c2 = map(int,input().split())
    lsg[(r1,c1)].append((r2,c2))
    lsg[(r2,c2)].append((r1,c1))
    node.append((r1,c1))
    node.append((r2,c2))
used = collections.defaultdict(lambda :False)
ans = True
for x,y in node:
    if used[(x,y)]:
        continue
    d = collections.deque([(x,y)])
    roop = 0
    while d:
        x,y = d.pop()
        if used[(x,y)]:
            continue
        used[(x,y)] = True
        c = 0
        for xn,yn in lsg[(x,y)]:
            if used[(xn,yn)]:
                c += 1
                continue
            d.append((xn,yn))
        if c >= 2:
            roop += c-1
    if roop >= 2:
        ans = False
print('YES' if ans else 'NO')
0