結果
問題 | No.2696 Sign Creation |
ユーザー | mkawa2 |
提出日時 | 2024-03-22 23:03:05 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,851 bytes |
コンパイル時間 | 279 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 129,156 KB |
最終ジャッジ日時 | 2024-05-17 18:18:38 |
合計ジャッジ時間 | 10,877 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
61,992 KB |
testcase_01 | AC | 40 ms
54,628 KB |
testcase_02 | AC | 44 ms
54,996 KB |
testcase_03 | AC | 41 ms
55,472 KB |
testcase_04 | AC | 40 ms
55,588 KB |
testcase_05 | AC | 41 ms
56,340 KB |
testcase_06 | AC | 42 ms
56,276 KB |
testcase_07 | AC | 42 ms
55,012 KB |
testcase_08 | AC | 171 ms
78,696 KB |
testcase_09 | AC | 41 ms
55,016 KB |
testcase_10 | AC | 161 ms
78,900 KB |
testcase_11 | AC | 43 ms
55,392 KB |
testcase_12 | AC | 43 ms
55,776 KB |
testcase_13 | AC | 769 ms
116,236 KB |
testcase_14 | AC | 446 ms
122,304 KB |
testcase_15 | AC | 471 ms
118,772 KB |
testcase_16 | AC | 837 ms
110,056 KB |
testcase_17 | AC | 41 ms
55,316 KB |
testcase_18 | AC | 142 ms
83,640 KB |
testcase_19 | AC | 378 ms
109,580 KB |
testcase_20 | AC | 49 ms
61,100 KB |
testcase_21 | AC | 391 ms
103,640 KB |
testcase_22 | AC | 125 ms
82,976 KB |
testcase_23 | AC | 371 ms
102,228 KB |
testcase_24 | AC | 370 ms
103,104 KB |
testcase_25 | AC | 383 ms
110,712 KB |
testcase_26 | AC | 58 ms
68,204 KB |
testcase_27 | AC | 83 ms
77,276 KB |
testcase_28 | AC | 93 ms
78,040 KB |
testcase_29 | AC | 48 ms
62,740 KB |
testcase_30 | AC | 56 ms
67,364 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(200005) # sys.set_int_max_str_digits(200005) int1 = lambda x: int(x)-1 pDB = lambda *x: print(*x, end="\n", file=sys.stderr) p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr) def II(): return int(sys.stdin.readline()) def LI(): return list(map(int, sys.stdin.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def LI1(): return list(map(int1, sys.stdin.readline().split())) def LLI1(rows_number): return [LI1() for _ in range(rows_number)] def SI(): return sys.stdin.readline().rstrip() # dij = [(0, 1), (-1, 0), (0, -1), (1, 0)] dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)] inf = -1-(-1 << 31) # inf = -1-(-1 << 62) # md = 10**9+7 md = 998244353 class UnionFind: def __init__(self, n): self.table = [-1]*n self.mem = [[u] for u in range(n)] self.cnt = n def root(self, u): stack = [] while self.table[u] >= 0: stack.append(u) u = self.table[u] for v in stack: self.table[v] = u return u def same(self, u, v): return self.root(u) == self.root(v) def merge(self, u, v): u = self.root(u) v = self.root(v) if u == v: return False su = -self.table[u] sv = -self.table[v] if su < sv: u, v = v, u self.table[u] = -su-sv self.table[v] = u self.mem[u] += self.mem[v] self.mem[v].clear() self.cnt -= 1 return True def member(self,u): return self.mem[self.root(u)] # グループの要素数 def size(self, u): return -self.table[self.root(u)] from collections import Counter h,w,n,d=LI() ij=LLI1(n) ij2u={(i,j):u for u,(i,j) in enumerate(ij)} uf=UnionFind(n) # can=set() for u,(i,j) in enumerate(ij): for x in range(max(0,i-d),min(h,i+d+1)): e=d-abs(i-x) for y in range(max(0,j-e),min(w,j+e+1)): if (x,y) in ij2u: v=ij2u[x,y] uf.merge(u,v) # else: # can.add((x,y)) mn,mx=inf,-inf one=[] cnt=Counter() s=0 for uu in uf.mem: if not uu:continue if len(uu)==1: one.append(uu[0]) else: s+=1 xy = set() for u in uu: i,j=ij[u] for x in range(max(0,i-d),min(h,i+d+1)): e=d-abs(i-x) for y in range(max(0,j-e),min(w,j+e+1)): xy.add((x,y)) for x,y in xy:cnt[x,y]+=1 def inc(): for u in one: i, j = ij[u] for x in range(max(0, i-d), min(h, i+d+1)): e = d-abs(i-x) for y in range(max(0, j-e), min(w, j+e+1)): if (x,y) not in cnt: return 1 return 0 mn=s if cnt:mn=s-max(cnt.values())+1 mx=s+inc() print(mn,mx)