結果

問題 No.2375 watasou and hibit's baseball
ユーザー NPNP
提出日時 2023-07-08 08:35:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,013 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 79,368 KB
最終ジャッジ日時 2024-07-22 04:24:44
合計ジャッジ時間 14,866 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,360 KB
testcase_01 WA -
testcase_02 AC 37 ms
53,112 KB
testcase_03 AC 374 ms
78,332 KB
testcase_04 WA -
testcase_05 AC 51 ms
64,232 KB
testcase_06 AC 614 ms
78,504 KB
testcase_07 AC 36 ms
52,476 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 591 ms
78,212 KB
testcase_13 WA -
testcase_14 AC 38 ms
52,376 KB
testcase_15 AC 228 ms
79,204 KB
testcase_16 AC 189 ms
77,908 KB
testcase_17 WA -
testcase_18 AC 38 ms
54,220 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 37 ms
52,860 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 556 ms
78,328 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 627 ms
79,084 KB
testcase_34 WA -
testcase_35 AC 609 ms
78,596 KB
testcase_36 AC 561 ms
78,356 KB
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, A, B = map(int, input().split())
balls = [tuple(map(int, input().split())) for _ in range(N)]

def dist(i, j):
    return abs(balls[i][0] - balls[j][0]) + abs(balls[i][1] - balls[j][1])

dp = [0] * (1 << N)
for S in range(1, 1 << N):
    for i in range(N):
        if (S >> i) & 1:
            T = S ^ (1 << i)
            if T == 0:
                dp[S] = 1
            else:
                for j in range(N):
                    if (T >> j) & 1:
                        if A <= dist(i, j):
                            dp[S] = max(dp[S], dp[T] + 1)
                        if abs(balls[i][2] - balls[j][2]) >= B:
                            dp[S] = max(dp[S], dp[T] + 1)
                        U = T ^ (1 << j)
                        if U != 0:
                            for k in range(N):
                                if (U >> k) & 1:
                                    if A <= dist(i, j) + dist(i, k):
                                        dp[S] = max(dp[S], dp[T] + 1)

print(dp[(1 << N) - 1])
0