結果

問題 No.2675 KUMA
ユーザー nu50218nu50218
提出日時 2024-02-08 17:51:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 258 ms / 2,000 ms
コード長 1,571 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 125,512 KB
最終ジャッジ日時 2024-09-28 12:47:49
合計ジャッジ時間 6,593 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
70,472 KB
testcase_01 AC 67 ms
85,632 KB
testcase_02 AC 46 ms
70,548 KB
testcase_03 AC 46 ms
70,836 KB
testcase_04 AC 46 ms
70,108 KB
testcase_05 AC 211 ms
100,748 KB
testcase_06 AC 181 ms
97,004 KB
testcase_07 AC 45 ms
69,820 KB
testcase_08 AC 258 ms
100,572 KB
testcase_09 AC 117 ms
94,188 KB
testcase_10 AC 224 ms
107,196 KB
testcase_11 AC 179 ms
106,632 KB
testcase_12 AC 93 ms
86,452 KB
testcase_13 AC 53 ms
73,252 KB
testcase_14 AC 66 ms
86,152 KB
testcase_15 AC 42 ms
69,392 KB
testcase_16 AC 215 ms
125,512 KB
testcase_17 AC 44 ms
69,296 KB
testcase_18 AC 45 ms
69,992 KB
testcase_19 AC 44 ms
70,972 KB
testcase_20 AC 45 ms
70,560 KB
testcase_21 AC 44 ms
70,032 KB
testcase_22 AC 48 ms
71,852 KB
testcase_23 AC 49 ms
72,760 KB
testcase_24 AC 49 ms
73,708 KB
testcase_25 AC 52 ms
73,740 KB
testcase_26 AC 50 ms
74,004 KB
testcase_27 AC 51 ms
74,084 KB
testcase_28 AC 51 ms
73,672 KB
testcase_29 AC 51 ms
73,476 KB
testcase_30 AC 52 ms
73,908 KB
testcase_31 AC 69 ms
85,744 KB
testcase_32 AC 66 ms
85,620 KB
testcase_33 AC 70 ms
85,744 KB
testcase_34 AC 67 ms
85,700 KB
testcase_35 AC 71 ms
85,868 KB
testcase_36 AC 86 ms
85,696 KB
testcase_37 AC 82 ms
86,052 KB
testcase_38 AC 86 ms
86,140 KB
testcase_39 AC 84 ms
85,876 KB
testcase_40 AC 94 ms
86,232 KB
testcase_41 AC 100 ms
86,844 KB
testcase_42 AC 105 ms
86,500 KB
testcase_43 AC 104 ms
86,252 KB
testcase_44 AC 115 ms
87,008 KB
testcase_45 AC 149 ms
98,348 KB
testcase_46 AC 144 ms
97,756 KB
testcase_47 AC 138 ms
99,372 KB
testcase_48 AC 195 ms
108,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque

def main():
    N = int(sys.stdin.readline())

    x = [0] * N
    y = [0] * N

    # その座標にいる UMA の集合を bit で持っておく。
    uma_set = [[0] * 1100 for _ in range(1100)]
    for i in range(N):
        x[i], y[i] = map(int, sys.stdin.readline().split())
        # 負になってバグるのを防ぐため +5 ずつしておく
        x[i] += 5
        y[i] += 5
        uma_set[x[i]][y[i]] = 1 << i

    # 設置する点の候補を列挙
    dx = [2, 1, -1, -2, -2, -1, 1, 2]
    dy = [1, 2, 2, 1, -1, -2, -2, -1]
    candidates = {(x[i] + dx[j], y[i] + dy[j]) for i in range(N) for j in range(8)}
    # UMA のいる場所を除く
    candidates -= set(zip(x, y))

    # dp
    INF = 1 << 30

    dp = [INF] * (1 << N)
    new_dp = deque([INF] * (1 << N))
    dp[0] = 0

    dx1 = [-1, -1, +2, -2]
    dy1 = [+2, -2, -1, -1]
    dx2 = [+1, +1, +2, -2]
    dy2 = [+2, -2, +1, +1]

    for a, b in candidates:
        new_dp = dp.copy()

        for bits in range(1 << N):
            if dp[bits] == INF:
                continue

            for dir in range(4):
                bits_next = bits

                # 向いた先の UMA を bits_next に加える
                bits_next |= uma_set[a + dx1[dir]][b + dy1[dir]]
                bits_next |= uma_set[a + dx2[dir]][b + dy2[dir]]

                new_dp[bits_next] = min(new_dp[bits_next], dp[bits] + 1)
            
        dp, new_dp = new_dp, dp

    print((dp[-1] if dp[-1] != INF else -1))

if __name__ == '__main__':
    main()
0