結果

問題 No.1605 Matrix Shape
ユーザー shotoyooshotoyoo
提出日時 2021-07-16 22:47:13
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,823 bytes
コンパイル時間 401 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 203,520 KB
最終ジャッジ日時 2024-07-06 10:18:03
合計ジャッジ時間 7,703 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,224 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 40 ms
52,352 KB
testcase_03 AC 38 ms
52,480 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 42 ms
51,968 KB
testcase_06 AC 38 ms
52,352 KB
testcase_07 AC 37 ms
52,480 KB
testcase_08 AC 38 ms
52,352 KB
testcase_09 AC 38 ms
52,096 KB
testcase_10 AC 37 ms
52,096 KB
testcase_11 AC 37 ms
52,224 KB
testcase_12 AC 38 ms
52,352 KB
testcase_13 AC 55 ms
73,472 KB
testcase_14 AC 38 ms
52,224 KB
testcase_15 AC 38 ms
52,096 KB
testcase_16 AC 39 ms
51,968 KB
testcase_17 AC 37 ms
52,096 KB
testcase_18 AC 37 ms
52,352 KB
testcase_19 AC 498 ms
198,884 KB
testcase_20 AC 355 ms
145,148 KB
testcase_21 AC 345 ms
129,152 KB
testcase_22 AC 387 ms
148,736 KB
testcase_23 AC 500 ms
203,520 KB
testcase_24 WA -
testcase_25 AC 203 ms
127,364 KB
testcase_26 AC 209 ms
138,752 KB
testcase_27 AC 203 ms
137,216 KB
testcase_28 AC 197 ms
125,008 KB
testcase_29 AC 201 ms
125,108 KB
testcase_30 AC 343 ms
137,472 KB
testcase_31 AC 336 ms
123,136 KB
testcase_32 AC 312 ms
133,248 KB
testcase_33 AC 186 ms
91,196 KB
testcase_34 AC 227 ms
165,672 KB
testcase_35 AC 212 ms
106,276 KB
testcase_36 AC 153 ms
97,012 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
for u in range(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:
    # ひとつかどうか判定
    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:
    res = euler_d(ns, start)
    if len(res)==n+1:
        ans = 1
    else:
        ans = 0
else:
    ans = 0
print(ans)
0