結果
問題 | No.2675 KUMA |
ユーザー | 👑 rin204 |
提出日時 | 2024-03-15 21:59:17 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 950 bytes |
コンパイル時間 | 300 ms |
コンパイル使用メモリ | 82,064 KB |
実行使用メモリ | 76,680 KB |
最終ジャッジ日時 | 2024-09-30 01:07:56 |
合計ジャッジ時間 | 5,784 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
53,552 KB |
testcase_01 | AC | 50 ms
63,620 KB |
testcase_02 | AC | 37 ms
52,492 KB |
testcase_03 | AC | 37 ms
52,332 KB |
testcase_04 | AC | 37 ms
52,536 KB |
testcase_05 | AC | 206 ms
75,444 KB |
testcase_06 | AC | 140 ms
76,128 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 111 ms
75,708 KB |
testcase_10 | AC | 220 ms
76,680 KB |
testcase_11 | AC | 227 ms
76,100 KB |
testcase_12 | AC | 70 ms
64,884 KB |
testcase_13 | AC | 51 ms
64,740 KB |
testcase_14 | AC | 51 ms
64,048 KB |
testcase_15 | AC | 38 ms
52,740 KB |
testcase_16 | AC | 129 ms
64,760 KB |
testcase_17 | AC | 38 ms
52,076 KB |
testcase_18 | AC | 37 ms
52,836 KB |
testcase_19 | WA | - |
testcase_20 | AC | 37 ms
53,420 KB |
testcase_21 | WA | - |
testcase_22 | AC | 41 ms
60,652 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 43 ms
59,544 KB |
testcase_27 | AC | 46 ms
60,960 KB |
testcase_28 | WA | - |
testcase_29 | AC | 50 ms
63,784 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 51 ms
64,500 KB |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | AC | 60 ms
67,968 KB |
testcase_37 | AC | 61 ms
68,124 KB |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | AC | 93 ms
75,464 KB |
testcase_44 | AC | 88 ms
75,580 KB |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
ソースコード
n = int(input())xy = {}inds = set()di = [1, 1, 2, 2, -1, -1, -2, -2]dj = [2, -2, 1, -1, 2, -2, 1, -1]for i in range(n):x, y = map(int, input().split())xy[(x, y)] = ifor k in range(8):inds.add((x + di[k], y + dj[k]))dp = [1 << 30] * (1 << n)dp[0] = 0for x, y in inds:if (x, y) in xy:continueok = []for k in range(0, 8, 2):x1 = x + di[k]y1 = y + dj[k]x2 = x + di[k + 1]y2 = y + dj[k + 1]if (x1, y1) in xy and (x2, y2) in xy:ok.append((1 << xy[(x1, y1)]) | (1 << xy[(x2, y2)]))if (x1, y1) in xy:ok.append(1 << xy[(x1, y1)])if (x2, y2) in xy:ok.append(1 << xy[(x2, y2)])for bit in range((1 << n) - 1, -1, -1):for bit2 in ok:if (bit & bit2) == bit2:dp[bit] = min(dp[bit], dp[bit ^ bit2] + 1)if dp[-1] > n:print(-1)else:print(dp[-1])