結果

問題 No.2375 watasou and hibit's baseball
ユーザー 👑 rin204rin204
提出日時 2023-07-07 21:42:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,009 ms / 2,000 ms
コード長 1,474 bytes
コンパイル時間 455 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 106,144 KB
最終ジャッジ日時 2024-07-21 17:30:23
合計ジャッジ時間 19,862 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,400 KB
testcase_01 AC 35 ms
52,468 KB
testcase_02 AC 35 ms
53,108 KB
testcase_03 AC 586 ms
91,340 KB
testcase_04 AC 75 ms
76,548 KB
testcase_05 AC 50 ms
65,516 KB
testcase_06 AC 989 ms
106,064 KB
testcase_07 AC 36 ms
53,252 KB
testcase_08 AC 235 ms
82,744 KB
testcase_09 AC 35 ms
52,132 KB
testcase_10 AC 37 ms
54,008 KB
testcase_11 AC 138 ms
78,380 KB
testcase_12 AC 711 ms
103,476 KB
testcase_13 AC 393 ms
89,008 KB
testcase_14 AC 37 ms
52,096 KB
testcase_15 AC 397 ms
81,992 KB
testcase_16 AC 386 ms
82,164 KB
testcase_17 AC 646 ms
103,412 KB
testcase_18 AC 39 ms
52,736 KB
testcase_19 AC 36 ms
51,968 KB
testcase_20 AC 161 ms
78,780 KB
testcase_21 AC 657 ms
103,536 KB
testcase_22 AC 35 ms
52,480 KB
testcase_23 AC 530 ms
102,660 KB
testcase_24 AC 620 ms
103,328 KB
testcase_25 AC 36 ms
53,368 KB
testcase_26 AC 904 ms
105,160 KB
testcase_27 AC 938 ms
105,524 KB
testcase_28 AC 907 ms
105,520 KB
testcase_29 AC 860 ms
104,736 KB
testcase_30 AC 991 ms
105,136 KB
testcase_31 AC 986 ms
105,836 KB
testcase_32 AC 1,009 ms
105,712 KB
testcase_33 AC 998 ms
106,144 KB
testcase_34 AC 796 ms
104,736 KB
testcase_35 AC 899 ms
104,892 KB
testcase_36 AC 861 ms
104,924 KB
testcase_37 AC 718 ms
104,100 KB
testcase_38 AC 428 ms
101,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def popcount(x):
    x = x - ((x >> 1) & 0x55555555)
    x = (x & 0x33333333) + ((x >> 2) & 0x33333333)
    x = (x + (x >> 4)) & 0x0F0F0F0F
    x += x >> 8
    x += x >> 16
    return x & 0x0000003F


n, a, b = map(int, input().split())
X = [0] * n
Y = [0] * n
K = [0] * n
for i in range(n):
    X[i], Y[i], K[i] = map(int, input().split())


def f(bit, i, j):
    return (bit * n + i) * n + j


dp = [False] * ((1 << n) * n * n)
for i in range(n):
    dp[f(1 << i, i, i)] = True


def dist(i, j):
    return abs(X[i] - X[j]) + abs(Y[i] - Y[j])


for bit in range(1 << n):
    ind = []
    for i in range(n):
        if bit >> i & 1:
            ind.append(i)

    for i in ind:
        for j in ind:
            if i == j:
                continue
            if len(ind) == 2 and a <= dist(i, j):
                dp[f(bit, i, j)] |= dp[f(bit ^ (1 << j), i, i)]
            if b <= abs(K[i] - K[j]):
                dp[f(bit, i, j)] |= dp[f(bit ^ (1 << j), i, i)]

            for k in ind:
                if k == i or k == j:
                    continue

                if a <= dist(i, k) + dist(j, k):
                    dp[f(bit, j, k)] |= dp[f(bit ^ (1 << k), i, j)]
                if b <= abs(K[j] - K[k]):
                    dp[f(bit, j, k)] |= dp[f(bit ^ (1 << k), i, j)]

ans = 0
for bit in range(1 << n):
    pc = popcount(bit)
    for i in range(n):
        for j in range(n):
            if dp[f(bit, i, j)]:
                ans = max(ans, pc)

print(ans)
0