結果

問題 No.2375 watasou and hibit's baseball
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-07-07 23:27:24
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,013 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 104,364 KB
最終ジャッジ日時 2024-07-21 19:50:52
合計ジャッジ時間 9,777 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 35 ms
52,224 KB
testcase_02 AC 34 ms
52,224 KB
testcase_03 AC 282 ms
87,400 KB
testcase_04 WA -
testcase_05 AC 45 ms
62,336 KB
testcase_06 AC 543 ms
101,332 KB
testcase_07 AC 36 ms
52,352 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 563 ms
101,808 KB
testcase_13 WA -
testcase_14 AC 34 ms
52,352 KB
testcase_15 AC 93 ms
78,208 KB
testcase_16 AC 73 ms
77,120 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 36 ms
52,224 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 254 ms
104,256 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,a,b = map(int,input().split())
XYK = [list(map(int,input().split())) for i in range(n)]

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

ans = 0

for b in range(1<<n):
    for i in range(n):
        for j in range(n):
            if dp[i][j][b] == 0:
                continue

            num = bin(b).count("1")
            ans = max(ans,num)
            x1,y1,k1 = XYK[i]
            x2,y2,k2 = XYK[j]

            for k in range(n):
                if b >> k & 1:
                    continue
                x3,y3,k3 = XYK[k]
                if num == 1:
                    if abs(x1-x3)+abs(y1-y3) >= a:
                        dp[k][i][b|1<<k] = 1
                        continue

                if abs(k1-k3) >= b:
                    dp[k][i][b|1<<k] = 1
                    continue

                if num >= 2 and abs(x1-x3)+abs(y1-y3) + abs(x2-x3)+abs(y2-y3) >= a:
                    dp[k][i][b|1<<k] = 1
                    continue
print(ans)
0