結果

問題 No.2375 watasou and hibit's baseball
ユーザー timitimi
提出日時 2023-07-15 02:24:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,468 ms / 2,000 ms
コード長 916 bytes
コンパイル時間 484 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 208,260 KB
最終ジャッジ日時 2024-09-16 11:03:54
合計ジャッジ時間 13,286 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,632 KB
testcase_01 AC 41 ms
54,144 KB
testcase_02 AC 41 ms
53,888 KB
testcase_03 AC 343 ms
87,616 KB
testcase_04 AC 41 ms
53,376 KB
testcase_05 AC 45 ms
60,032 KB
testcase_06 AC 1,468 ms
208,260 KB
testcase_07 AC 41 ms
53,504 KB
testcase_08 AC 41 ms
54,016 KB
testcase_09 AC 39 ms
53,632 KB
testcase_10 AC 40 ms
53,120 KB
testcase_11 AC 41 ms
53,504 KB
testcase_12 AC 229 ms
80,352 KB
testcase_13 AC 94 ms
76,416 KB
testcase_14 AC 41 ms
53,248 KB
testcase_15 AC 439 ms
87,752 KB
testcase_16 AC 228 ms
81,048 KB
testcase_17 AC 84 ms
74,496 KB
testcase_18 AC 42 ms
53,632 KB
testcase_19 AC 43 ms
53,248 KB
testcase_20 AC 42 ms
53,632 KB
testcase_21 AC 110 ms
76,544 KB
testcase_22 AC 41 ms
53,376 KB
testcase_23 AC 40 ms
53,376 KB
testcase_24 AC 43 ms
54,144 KB
testcase_25 AC 41 ms
53,376 KB
testcase_26 AC 456 ms
96,136 KB
testcase_27 AC 576 ms
105,492 KB
testcase_28 AC 559 ms
110,464 KB
testcase_29 AC 552 ms
116,044 KB
testcase_30 AC 763 ms
128,464 KB
testcase_31 AC 798 ms
123,668 KB
testcase_32 AC 953 ms
138,152 KB
testcase_33 AC 601 ms
107,016 KB
testcase_34 AC 440 ms
98,536 KB
testcase_35 AC 742 ms
133,188 KB
testcase_36 AC 540 ms
117,936 KB
testcase_37 AC 425 ms
101,688 KB
testcase_38 AC 52 ms
62,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,A,B=map(int, input().split())
C=[]
for i in range(N):
  x,y,k=map(int, input().split())
  C.append((x,y,k))
from collections import deque
d=deque()
ans=1
for i in range(N):
  for j in range(N):
    if i==j:
      continue
    x,y,k=C[j];xx,yy,kk=C[i]
    bit=2**j+2**i
    f=0
    if A<=abs(x-xx)+abs(y-yy):
      f=1
    if B<=abs(k-kk):
      f=1
    if f==1:
      ans=max(ans,2)
      d.append((bit,j,i))

for i in range(3,N+1):
  D={};nd=deque()
  while d:
    bit,p,q=d.popleft()
    for j in range(N):
      if not (bit & (1<<j)):
        f=0
        bbit=bit|(1<<j)
        x,y,k=C[p];xx,yy,kk=C[q];xxx,yyy,kkk=C[j]
        if B<=abs(kk-kkk):
          f=1
        if A<=abs(x-xxx)+abs(y-yyy)+abs(xx-xxx)+abs(yy-yyy):
          f=1
        if f==1:
          ans=max(ans,i)
          cc=q*100+j
          if (bbit,cc) not in D:
            D[(bbit,cc)]=1
            nd.append((bbit,q,j))
  d=nd
print(ans)
0