結果
問題 | No.2696 Sign Creation |
ユーザー | ntuda |
提出日時 | 2024-03-23 15:51:43 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,528 bytes |
コンパイル時間 | 214 ms |
コンパイル使用メモリ | 82,496 KB |
実行使用メモリ | 115,128 KB |
最終ジャッジ日時 | 2024-05-17 18:24:08 |
合計ジャッジ時間 | 15,687 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
66,256 KB |
testcase_01 | AC | 38 ms
58,412 KB |
testcase_02 | AC | 35 ms
52,592 KB |
testcase_03 | AC | 37 ms
59,048 KB |
testcase_04 | AC | 38 ms
60,476 KB |
testcase_05 | AC | 38 ms
60,696 KB |
testcase_06 | AC | 33 ms
53,492 KB |
testcase_07 | AC | 38 ms
53,892 KB |
testcase_08 | AC | 178 ms
78,384 KB |
testcase_09 | AC | 60 ms
72,208 KB |
testcase_10 | AC | 160 ms
79,020 KB |
testcase_11 | AC | 77 ms
76,108 KB |
testcase_12 | AC | 75 ms
76,196 KB |
testcase_13 | AC | 1,613 ms
88,664 KB |
testcase_14 | AC | 604 ms
88,848 KB |
testcase_15 | AC | 566 ms
88,556 KB |
testcase_16 | AC | 1,360 ms
88,856 KB |
testcase_17 | AC | 382 ms
77,052 KB |
testcase_18 | AC | 296 ms
79,456 KB |
testcase_19 | AC | 583 ms
83,828 KB |
testcase_20 | AC | 96 ms
76,180 KB |
testcase_21 | AC | 539 ms
94,120 KB |
testcase_22 | AC | 456 ms
78,952 KB |
testcase_23 | AC | 559 ms
87,284 KB |
testcase_24 | AC | 542 ms
87,148 KB |
testcase_25 | AC | 699 ms
83,516 KB |
testcase_26 | AC | 369 ms
77,164 KB |
testcase_27 | AC | 404 ms
77,964 KB |
testcase_28 | AC | 331 ms
78,412 KB |
testcase_29 | AC | 366 ms
76,368 KB |
testcase_30 | AC | 351 ms
76,724 KB |
testcase_31 | TLE | - |
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 = [list(map(int,input().split())) for _ in range(N)] 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 in range(N): x,y = XY[i] 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): 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)