結果
問題 | No.1605 Matrix Shape |
ユーザー | buey_t |
提出日時 | 2023-04-17 11:58:10 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 2,856 bytes |
コンパイル時間 | 574 ms |
コンパイル使用メモリ | 82,696 KB |
実行使用メモリ | 117,344 KB |
最終ジャッジ日時 | 2024-10-12 13:30:35 |
合計ジャッジ時間 | 13,554 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 154 ms
105,164 KB |
testcase_01 | AC | 154 ms
105,344 KB |
testcase_02 | AC | 154 ms
105,252 KB |
testcase_03 | AC | 156 ms
105,472 KB |
testcase_04 | AC | 155 ms
105,460 KB |
testcase_05 | AC | 156 ms
105,216 KB |
testcase_06 | AC | 154 ms
105,332 KB |
testcase_07 | AC | 153 ms
105,264 KB |
testcase_08 | AC | 156 ms
105,316 KB |
testcase_09 | AC | 157 ms
105,376 KB |
testcase_10 | AC | 160 ms
105,168 KB |
testcase_11 | AC | 156 ms
105,344 KB |
testcase_12 | AC | 159 ms
105,216 KB |
testcase_13 | RE | - |
testcase_14 | AC | 155 ms
105,344 KB |
testcase_15 | AC | 155 ms
105,380 KB |
testcase_16 | AC | 160 ms
105,344 KB |
testcase_17 | AC | 159 ms
105,344 KB |
testcase_18 | AC | 158 ms
105,372 KB |
testcase_19 | RE | - |
testcase_20 | AC | 644 ms
113,336 KB |
testcase_21 | AC | 641 ms
113,092 KB |
testcase_22 | RE | - |
testcase_23 | AC | 671 ms
117,228 KB |
testcase_24 | AC | 660 ms
117,344 KB |
testcase_25 | AC | 282 ms
106,880 KB |
testcase_26 | AC | 296 ms
106,860 KB |
testcase_27 | AC | 286 ms
106,880 KB |
testcase_28 | AC | 289 ms
106,828 KB |
testcase_29 | AC | 286 ms
106,880 KB |
testcase_30 | AC | 607 ms
114,312 KB |
testcase_31 | AC | 602 ms
114,316 KB |
testcase_32 | AC | 531 ms
111,716 KB |
testcase_33 | AC | 516 ms
110,220 KB |
testcase_34 | AC | 272 ms
106,300 KB |
testcase_35 | AC | 573 ms
111,496 KB |
testcase_36 | AC | 463 ms
109,448 KB |
ソースコード
from math import sqrt,sin,cos,tan,ceil,radians,floor,gcd,exp,log,log10,log2,factorial,fsum from heapq import heapify, heappop, heappush from bisect import bisect_left, bisect_right from copy import deepcopy import copy import random from collections import deque,Counter,defaultdict from itertools import permutations,combinations from decimal import Decimal,ROUND_HALF_UP #tmp = Decimal(mid).quantize(Decimal('0'), rounding=ROUND_HALF_UP) from functools import lru_cache, reduce #@lru_cache(maxsize=None) from operator import add,sub,mul,xor,and_,or_,itemgetter INF = 10**18 mod1 = 10**9+7 mod2 = 998244353 #DecimalならPython #再帰ならPython!!!!!!!!!!!!!!!!!!!!!!!!!! class UnionFind(): def __init__(self, n): self.n = n self.parents = [-1] * n #親だけ self.edge = [0]*n def find(self, x): if self.parents[x] < 0: return x else: self.parents[x] = self.find(self.parents[x]) return self.parents[x] def union(self, x, y): x = self.find(x) y = self.find(y) if self.parents[x] > self.parents[y]: x, y = y, x self.edge[x] += 1 if x == y: return self.parents[x] += self.parents[y] self.edge[x] += self.edge[y] self.parents[y] = x def size(self, x): return -self.parents[self.find(x)] def same(self, x, y): return self.find(x) == self.find(y) def members(self, x): root = self.find(x) return [i for i in range(self.n) if self.find(i) == root] def roots(self): return [i for i, x in enumerate(self.parents) if x < 0] def group_count(self): return len(self.roots()) def all_group_members(self): group_members = defaultdict(list) for member in range(self.n): group_members[self.find(member)].append(member) return group_members def __str__(self): return '\n'.join(f'{r}: {m}' for r, m in self.all_group_members().items()) ''' グラフっぽく考えられそう 最初と終わりさえ決めれば間は関係ない 全部を通って終わりまでたどりつけるか?という問題 sccして1個なら全部行ける 1個じゃなくて、パスがあったらその組はいける 入次数0から始める そこから全部通れるか サイクルはSCCで対処可能 ''' N = int(input()) lim = 2*(10**5) uf = UnionFind(lim) memo = defaultdict(int) for i in range(N): h,w = map(int, input().split()) memo[h-1] += 1 memo[w-1] -= 1 uf.union(h,w) M = len(memo.keys()) if uf.group_count() != lim-M+1: print(0) exit() ls = list(memo.values()) ls.sort() if ls[0] == ls[-1] == 0: print(M) elif -ls[0] == ls[-1] == 1 and ls.count(0) == len(ls)-2: print(1) else: print(0)