結果

問題 No.2375 watasou and hibit's baseball
ユーザー ニックネームニックネーム
提出日時 2023-07-07 22:24:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 664 ms / 2,000 ms
コード長 648 bytes
コンパイル時間 1,039 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 123,800 KB
最終ジャッジ日時 2024-07-21 18:32:32
合計ジャッジ時間 12,317 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,608 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 39 ms
52,608 KB
testcase_03 AC 392 ms
99,000 KB
testcase_04 AC 47 ms
59,520 KB
testcase_05 AC 46 ms
59,392 KB
testcase_06 AC 664 ms
122,228 KB
testcase_07 AC 40 ms
51,968 KB
testcase_08 AC 79 ms
84,352 KB
testcase_09 AC 38 ms
51,840 KB
testcase_10 AC 40 ms
52,224 KB
testcase_11 AC 52 ms
64,768 KB
testcase_12 AC 423 ms
123,504 KB
testcase_13 AC 192 ms
96,872 KB
testcase_14 AC 39 ms
52,096 KB
testcase_15 AC 346 ms
83,500 KB
testcase_16 AC 166 ms
79,720 KB
testcase_17 AC 216 ms
120,160 KB
testcase_18 AC 39 ms
52,608 KB
testcase_19 AC 40 ms
51,712 KB
testcase_20 AC 54 ms
64,768 KB
testcase_21 AC 280 ms
121,584 KB
testcase_22 AC 39 ms
52,224 KB
testcase_23 AC 158 ms
117,128 KB
testcase_24 AC 162 ms
117,240 KB
testcase_25 AC 40 ms
51,712 KB
testcase_26 AC 430 ms
121,884 KB
testcase_27 AC 500 ms
122,636 KB
testcase_28 AC 483 ms
122,964 KB
testcase_29 AC 443 ms
121,828 KB
testcase_30 AC 594 ms
123,800 KB
testcase_31 AC 568 ms
123,720 KB
testcase_32 AC 621 ms
123,604 KB
testcase_33 AC 540 ms
123,584 KB
testcase_34 AC 444 ms
122,272 KB
testcase_35 AC 518 ms
122,220 KB
testcase_36 AC 448 ms
121,556 KB
testcase_37 AC 565 ms
123,628 KB
testcase_38 AC 181 ms
119,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,a,b = map(int,input().split())
xyk = [tuple(map(int,input().split())) for _ in range(n)]
def dist(i,j): return abs(xyk[i][0]-xyk[j][0])+abs(xyk[i][1]-xyk[j][1])
def fast(i,j): return abs(xyk[i][2]-xyk[j][2])
dp = [[[0]*n for _ in range(n)] for _ in range(1<<n)]; ans = 1
for i in range(n): dp[1<<i][i][i] = 1
for s in range(1<<n):
    for i in range(n):
        for j in range(n):
            if not dp[s][i][j]: continue
            for k in range(n):
                if s>>k&1: continue
                if fast(k,j)>=b or dist(k,j)+(i!=j)*dist(k,i)>=a: dp[s^1<<k][j][k] = dp[s][i][j]+1
                ans = max(ans,dp[s^1<<k][j][k])
print(ans)
0