結果

問題 No.1605 Matrix Shape
ユーザー shotoyooshotoyoo
提出日時 2021-07-16 22:00:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,738 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 263,424 KB
最終ジャッジ日時 2024-07-06 09:10:14
合計ジャッジ時間 10,060 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,352 KB
testcase_01 AC 32 ms
52,480 KB
testcase_02 AC 32 ms
52,480 KB
testcase_03 AC 34 ms
52,736 KB
testcase_04 AC 32 ms
52,608 KB
testcase_05 AC 32 ms
52,352 KB
testcase_06 AC 32 ms
52,480 KB
testcase_07 AC 32 ms
52,540 KB
testcase_08 AC 33 ms
52,096 KB
testcase_09 AC 32 ms
52,992 KB
testcase_10 AC 32 ms
52,480 KB
testcase_11 AC 31 ms
52,608 KB
testcase_12 AC 32 ms
52,608 KB
testcase_13 AC 47 ms
73,856 KB
testcase_14 AC 33 ms
52,608 KB
testcase_15 AC 32 ms
52,396 KB
testcase_16 AC 32 ms
52,352 KB
testcase_17 AC 32 ms
52,480 KB
testcase_18 AC 35 ms
52,352 KB
testcase_19 AC 677 ms
263,424 KB
testcase_20 AC 556 ms
219,692 KB
testcase_21 AC 497 ms
200,064 KB
testcase_22 AC 455 ms
209,844 KB
testcase_23 AC 665 ms
246,696 KB
testcase_24 WA -
testcase_25 AC 395 ms
222,744 KB
testcase_26 AC 385 ms
212,444 KB
testcase_27 AC 360 ms
211,896 KB
testcase_28 AC 356 ms
215,712 KB
testcase_29 AC 347 ms
220,672 KB
testcase_30 AC 525 ms
191,880 KB
testcase_31 AC 453 ms
179,200 KB
testcase_32 AC 519 ms
200,504 KB
testcase_33 AC 271 ms
139,428 KB
testcase_34 AC 300 ms
217,728 KB
testcase_35 AC 287 ms
156,172 KB
testcase_36 AC 179 ms
123,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")
writef = lambda x: print("{:.12f}".format(x))


n = int(input())
hw = []
m = 0
for _ in range(n):
    h,w = list(map(int, input().split()))
    hw.append((h,w))
    m = max(m, h, w)
ns = [[] for _ in range(n+m)]
rns = [[] for _ in range(n+m)]
u = 0
for h,w in hw:
    ns[u].append(n+w-1)
    ns[n+h-1].append(u)
    rns[n+w-1].append(u)
    rns[u].append(n+h-1)
    u += 1
v0 = v1 = 0
start = None
for u in range(n+m):
    if len(ns[u])==len(rns[u]):
        pass
    elif len(ns[u])+1 == len(rns[u]):
        v0 += 1
    elif len(rns[u])+1 == len(ns[u]):
        v1 += 1
        start = u
    else:
        v0 = v1 = 100
        break
def euler_d(ns, start=0):
    """有向グラフのオイラー閉路
    パスの場合はstartを奇数次数頂点にする
    """
    n = len(ns)
    p = []
    q = [start]
    r = []
    vs = [0]*n
    while q:
        u = q.pop()
        u0 = u
        while vs[u]<len(ns[u]):
            v = ns[u][vs[u]]
            vs[u] += 1
            u = v
            r.append(v)
        while r:
            q.append(r.pop())
        p.append(u0)
    return p
if v0==v1==0:
    # ひとつかどうか判定
    res = euler_d(ns, start=0)
    if len(res)==2*n+1:
        s = set()
        l = [hw[i] for i in res[:-1] if i<n]
        for i in range(len(l)):
            h0,w0 = l[i]
            h1,w1 = l[i-1]
            s.add((h0,w1))
        ans = len(s)
    else:
        ans = 0
elif v0==v1==1:
    res = euler_d(ns, start)
    if len(res)==2*n+1:
        ans = 1
    else:
        ans = 0
else:
    ans = 0
print(ans)
0