結果

問題 No.2375 watasou and hibit's baseball
ユーザー flygonflygon
提出日時 2023-07-07 22:41:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 2,088 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 128,768 KB
最終ジャッジ日時 2024-07-21 18:57:32
合計ジャッジ時間 18,543 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,040 KB
testcase_01 AC 42 ms
54,784 KB
testcase_02 AC 42 ms
55,040 KB
testcase_03 WA -
testcase_04 AC 114 ms
77,824 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 41 ms
54,912 KB
testcase_08 AC 312 ms
89,472 KB
testcase_09 AC 41 ms
54,528 KB
testcase_10 AC 49 ms
63,616 KB
testcase_11 AC 183 ms
80,128 KB
testcase_12 AC 900 ms
128,000 KB
testcase_13 AC 523 ms
101,844 KB
testcase_14 WA -
testcase_15 AC 291 ms
83,840 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 50 ms
63,488 KB
testcase_19 AC 41 ms
54,784 KB
testcase_20 AC 214 ms
80,640 KB
testcase_21 WA -
testcase_22 AC 43 ms
55,296 KB
testcase_23 AC 651 ms
126,976 KB
testcase_24 WA -
testcase_25 AC 42 ms
54,784 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 853 ms
127,360 KB
testcase_31 AC 810 ms
127,808 KB
testcase_32 AC 838 ms
127,432 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 936 ms
128,736 KB
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
from bisect import bisect_left, bisect_right
from heapq import heappop, heappush
from collections import defaultdict, deque, Counter
import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
# n <= 1<<60 以下くらい


def popcnt(n):
    c = (n & 0x5555555555555555) + ((n >> 1) & 0x5555555555555555)
    c = (c & 0x3333333333333333) + ((c >> 2) & 0x3333333333333333)
    c = (c & 0x0f0f0f0f0f0f0f0f) + ((c >> 4) & 0x0f0f0f0f0f0f0f0f)
    c = (c & 0x00ff00ff00ff00ff) + ((c >> 8) & 0x00ff00ff00ff00ff)
    c = (c & 0x0000ffff0000ffff) + ((c >> 16) & 0x0000ffff0000ffff)
    c = (c & 0x00000000ffffffff) + ((c >> 32) & 0x00000000ffffffff)
    return c


n, A, B = map(int, input().split())
ball = [list(map(int, input().split())) for i in range(n)]

dp = [[[0]*(n+1) for i in range(n+1)] for i in range(1 << n)]
for i in range(n):
    dp[1 << i][i][-1] = 1


def dist(i, j):
    xi, yi, ki = ball[i]
    xj, yj, kj = ball[j]
    return abs(xi-xj) + abs(yi-yj)

def speed(i,j):
    xi, yi, ki = ball[i]
    xj, yj, kj = ball[j]
    return abs(ki-kj)

def judge1(i, j, cnt):
    ok = 0
    if cnt == 2 and A <= dist(i, j):
        ok = 1
    if B <= speed(i,j):
        ok = 1
    return ok

def judge2(i, j, k):
    ok = 0
    if A <= dist(i,j) + dist(i,k):
        ok = 1
    return ok



ans = 1
for bit in range(1 << n):
    cnt = popcnt(bit)
    if cnt <= 1: continue
    for crr in range(n):
        if not (bit >> crr) & 1:
            continue
        for pre1 in range(n):
            if not (bit >> pre1) & 1:
                continue
            ok = judge1(crr, pre1, cnt)
            if cnt == 2 and ok:
                dp[bit][crr][pre1] |= dp[bit-(1<<crr)][pre1][-1]
                ans = max(ans, dp[bit][crr][pre1]*2)
                continue
            for pre2 in range(n+1):
                if not (bit >> pre2) & 1:
                    continue
                if judge2(crr, pre1, pre2):
                    dp[bit][crr][pre1] |= dp[bit - (1<<crr)][pre1][pre2]
                    ans = max(ans, dp[bit][crr][pre1]*cnt)
print(ans)


0