結果
問題 | No.2696 Sign Creation |
ユーザー | ntuda |
提出日時 | 2024-03-23 16:18:28 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,582 bytes |
コンパイル時間 | 224 ms |
コンパイル使用メモリ | 82,372 KB |
実行使用メモリ | 93,240 KB |
最終ジャッジ日時 | 2024-05-17 18:23:58 |
合計ジャッジ時間 | 5,316 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
66,828 KB |
testcase_01 | AC | 45 ms
60,820 KB |
testcase_02 | AC | 38 ms
53,736 KB |
testcase_03 | AC | 44 ms
59,928 KB |
testcase_04 | AC | 43 ms
58,508 KB |
testcase_05 | AC | 40 ms
53,952 KB |
testcase_06 | AC | 40 ms
53,140 KB |
testcase_07 | AC | 41 ms
54,944 KB |
testcase_08 | AC | 153 ms
77,836 KB |
testcase_09 | AC | 69 ms
72,792 KB |
testcase_10 | AC | 190 ms
78,740 KB |
testcase_11 | AC | 85 ms
76,264 KB |
testcase_12 | AC | 86 ms
76,488 KB |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
ソースコード
def root(x): if P[x] < 0: return x P[x] = root(P[x]) # 経路圧縮 return P[x] def unite(x,y): x = root(x) y = root(y) if x == y: return if x > y: x,y = y,x P[x] += P[y] P[y] = x def same(x,y): return root(x) == root(y) def size(x): x = root(x) return -P[x] H, W, N, D = map(int, input().split()) XY = [tuple(map(int,input().split())) for _ in range(N)] XYS = set(XY) P = [-1] * N dic = {} for i in range(N): dic[tuple(XY[i])] = i def search(x, y): ret = set() for i in range(-D, D+1): if 0 < x + i <= H: xi = x + i for j in range(-D + abs(i), D - abs(i) + 1): if 0 < y + j <= W: yj = y+j if (xi,yj) in dic: ret.add(dic[(xi,yj)]) return ret for i,(x,y) in enumerate(XY): for j in search(x,y): unite(i,j) Q = set() for i in range(N): if size(i) >= 2: Q.add(root(i)) gcount = len(Q) ansmax = 0 ansmin = gcount for i in range(1,H+1): for j in range(1,W+1): if (i,j) in XY: continue tmp = search(i,j) Q1 = set() Q2 = set() for k in tmp: if size(k) > 1: Q2.add(root(k)) else: Q1.add(k) if Q2: tmp2 = gcount - len(Q2) + 1 ansmax = max(ansmax, tmp2) ansmin = min(ansmin, tmp2) elif Q1: tmp2 = gcount + 1 ansmax = max(ansmax,tmp2) ansmin = min(ansmin,tmp2) print(ansmin,ansmax)