結果

問題 No.1605 Matrix Shape
ユーザー shotoyooshotoyoo
提出日時 2021-07-17 00:32:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 352 ms / 2,000 ms
コード長 1,876 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,056 KB
実行使用メモリ 203,524 KB
最終ジャッジ日時 2024-07-06 12:05:10
合計ジャッジ時間 6,636 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,756 KB
testcase_01 AC 30 ms
52,616 KB
testcase_02 AC 30 ms
53,024 KB
testcase_03 AC 29 ms
52,864 KB
testcase_04 AC 30 ms
53,748 KB
testcase_05 AC 30 ms
54,124 KB
testcase_06 AC 30 ms
52,924 KB
testcase_07 AC 29 ms
53,352 KB
testcase_08 AC 30 ms
52,764 KB
testcase_09 AC 30 ms
52,820 KB
testcase_10 AC 29 ms
53,040 KB
testcase_11 AC 30 ms
52,548 KB
testcase_12 AC 31 ms
53,268 KB
testcase_13 AC 45 ms
74,216 KB
testcase_14 AC 31 ms
52,812 KB
testcase_15 AC 30 ms
53,080 KB
testcase_16 AC 29 ms
53,144 KB
testcase_17 AC 30 ms
53,100 KB
testcase_18 AC 31 ms
54,300 KB
testcase_19 AC 352 ms
199,020 KB
testcase_20 AC 236 ms
145,228 KB
testcase_21 AC 228 ms
129,244 KB
testcase_22 AC 271 ms
149,244 KB
testcase_23 AC 351 ms
203,524 KB
testcase_24 AC 332 ms
178,740 KB
testcase_25 AC 157 ms
127,232 KB
testcase_26 AC 162 ms
138,516 KB
testcase_27 AC 158 ms
136,920 KB
testcase_28 AC 151 ms
125,524 KB
testcase_29 AC 151 ms
125,224 KB
testcase_30 AC 227 ms
137,676 KB
testcase_31 AC 217 ms
123,136 KB
testcase_32 AC 201 ms
133,180 KB
testcase_33 AC 131 ms
91,380 KB
testcase_34 AC 177 ms
165,264 KB
testcase_35 AC 158 ms
106,368 KB
testcase_36 AC 110 ms
97,336 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(m)]
rns = [[] for _ in range(m)]
u = 0
for h,w in hw:
    ns[h-1].append(w-1)
    rns[w-1].append(h-1)
#     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
end = None
for u in range(m):
    if len(ns[u])==len(rns[u]):
        pass
    elif len(ns[u])+1 == len(rns[u]):
        v0 += 1
        end = u
    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:
    # ひとつかどうか判定
    for start in range(len(ns)):
        if ns[start]:
            break
    res = euler_d(ns, start)
    if len(res)==n+1:
        s = set()
        l = res[:-1]
        for i in range(len(l)):
            h0 = l[i]
            w1 = l[i-1]
            s.add((h0))
        ans = len(s)
    else:
        ans = 0
elif v0==v1==1:
    ns[end].append(start)
    res = euler_d(ns, start)
    if len(res)==n+2:
        ans = 1
    else:
        ans = 0
else:
    ans = 0
print(ans)
0