結果
問題 | No.2696 Sign Creation |
ユーザー | mo124121 |
提出日時 | 2024-02-04 10:01:33 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,808 bytes |
コンパイル時間 | 192 ms |
コンパイル使用メモリ | 82,380 KB |
実行使用メモリ | 150,196 KB |
最終ジャッジ日時 | 2024-05-17 18:09:20 |
合計ジャッジ時間 | 19,427 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
62,236 KB |
testcase_01 | AC | 43 ms
55,172 KB |
testcase_02 | AC | 49 ms
62,264 KB |
testcase_03 | AC | 55 ms
65,944 KB |
testcase_04 | AC | 55 ms
65,852 KB |
testcase_05 | AC | 57 ms
67,632 KB |
testcase_06 | WA | - |
testcase_07 | AC | 43 ms
56,488 KB |
testcase_08 | AC | 217 ms
79,116 KB |
testcase_09 | AC | 45 ms
56,496 KB |
testcase_10 | AC | 160 ms
78,732 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | TLE | - |
testcase_14 | AC | 942 ms
100,184 KB |
testcase_15 | AC | 940 ms
98,448 KB |
testcase_16 | TLE | - |
testcase_17 | WA | - |
testcase_18 | AC | 283 ms
84,040 KB |
testcase_19 | AC | 1,059 ms
98,976 KB |
testcase_20 | AC | 55 ms
65,356 KB |
testcase_21 | AC | 607 ms
99,056 KB |
testcase_22 | AC | 336 ms
83,008 KB |
testcase_23 | AC | 786 ms
98,296 KB |
testcase_24 | AC | 782 ms
97,828 KB |
testcase_25 | AC | 1,300 ms
101,044 KB |
testcase_26 | AC | 123 ms
78,524 KB |
testcase_27 | WA | - |
testcase_28 | AC | 315 ms
88,776 KB |
testcase_29 | WA | - |
testcase_30 | AC | 130 ms
78,448 KB |
testcase_31 | TLE | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
ソースコード
import sys sys.setrecursionlimit(2 * 10**3) if sys.implementation.name == "pypy": import pypyjit pypyjit.set_param("max_unroll_recursion=-1") from collections import Counter, defaultdict class UnionFind: def __init__(self, N): self.N = N self.parent_or_size = [-1] * N self.group_count = N def root(self, x): if self.parent_or_size[x] < 0: return x else: self.parent_or_size[x] = self.root(self.parent_or_size[x]) return self.parent_or_size[x] def unite(self, x, y): root_x = self.root(x) root_y = self.root(y) if root_x == root_y: return if -self.parent_or_size[root_x] < -self.parent_or_size[root_y]: root_x, root_y = root_y, root_x self.parent_or_size[root_x] += self.parent_or_size[root_y] self.parent_or_size[root_y] = root_x self.group_count -= 1 def same(self, x, y): return self.root(x) == self.root(y) def size(self, x): return -self.parent_or_size[self.root(x)] def groups(self): ret = defaultdict(list) for i in range(self.N): ret[self.root(i)].append(i) return [group for group in ret.values()] input = lambda: sys.stdin.readline().rstrip() SHIFT = 20 MASK = (1 << SHIFT) - 1 def conv(x, y): return x << SHIFT | y def rev(pos): return pos >> SHIFT, pos & MASK H, W, N, D = map(int, input().split()) star = {} XY = [] for i in range(N): x, y = map(int, input().split()) XY.append((x, y)) star[conv(x, y)] = i MOVES = [] for xd in range(-D, D + 1): for yd in range(-D, D + 1): d = abs(xd) + abs(yd) if d > D: continue MOVES.append((xd, yd)) uf = UnionFind(N) cand = Counter() for i, (x, y) in enumerate(XY): for xd, yd in MOVES: d = abs(xd) + abs(yd) if d > D: continue xn = x + xd yn = y + yd if xn < 0 or yn < 0: continue posn = conv(xn, yn) cand[posn] += 1 if posn in star: uf.unite(i, star[posn]) stella = uf.groups() is_seiza = [0] * N count = 0 for block in stella: if len(block) > 1: count += 1 for i in block: is_seiza[i] = 1 mi = count ma = count for pos in cand: x, y = rev(pos) seen = set() if cand[pos]<=1: continue for xd, yd in MOVES: d = abs(xd) + abs(yd) if d > D: continue xn = x + xd yn = y + yd posn = conv(xn, yn) if posn not in star: continue seen.add(uf.root(star[posn])) c = count + 1 for s in seen: if is_seiza[s]: c -= 1 mi = min(mi, c) ma = max(ma, c) print(mi, ma)