結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,376 KB
testcase_01 AC 41 ms
53,120 KB
testcase_02 AC 45 ms
53,376 KB
testcase_03 AC 309 ms
83,716 KB
testcase_04 AC 39 ms
53,760 KB
testcase_05 AC 44 ms
59,904 KB
testcase_06 AC 1,294 ms
176,872 KB
testcase_07 AC 39 ms
53,760 KB
testcase_08 AC 38 ms
54,144 KB
testcase_09 AC 39 ms
53,376 KB
testcase_10 AC 40 ms
53,504 KB
testcase_11 AC 40 ms
54,016 KB
testcase_12 AC 201 ms
79,220 KB
testcase_13 AC 89 ms
76,820 KB
testcase_14 AC 39 ms
53,632 KB
testcase_15 AC 393 ms
85,160 KB
testcase_16 AC 211 ms
79,932 KB
testcase_17 AC 72 ms
73,600 KB
testcase_18 AC 39 ms
53,376 KB
testcase_19 AC 41 ms
53,632 KB
testcase_20 AC 40 ms
53,760 KB
testcase_21 AC 102 ms
76,800 KB
testcase_22 AC 40 ms
54,144 KB
testcase_23 AC 41 ms
53,504 KB
testcase_24 AC 40 ms
53,632 KB
testcase_25 AC 40 ms
53,632 KB
testcase_26 AC 397 ms
90,468 KB
testcase_27 AC 517 ms
95,120 KB
testcase_28 AC 487 ms
98,588 KB
testcase_29 AC 488 ms
106,188 KB
testcase_30 AC 660 ms
117,400 KB
testcase_31 AC 664 ms
108,124 KB
testcase_32 AC 741 ms
120,956 KB
testcase_33 AC 598 ms
101,056 KB
testcase_34 AC 412 ms
93,200 KB
testcase_35 AC 610 ms
117,288 KB
testcase_36 AC 517 ms
107,052 KB
testcase_37 AC 385 ms
94,416 KB
testcase_38 AC 51 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=(10**12)*(q*100+j)+bbit
          if cc not in D:
            D[cc]=1
            nd.append((bbit,q,j))
  d=nd
print(ans)
0