結果

問題 No.2375 watasou and hibit's baseball
ユーザー timitimi
提出日時 2023-07-15 02:21:43
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 877 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 308,204 KB
最終ジャッジ日時 2024-09-16 11:01:20
合計ジャッジ時間 13,351 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,760 KB
testcase_01 AC 41 ms
53,632 KB
testcase_02 AC 39 ms
53,760 KB
testcase_03 AC 339 ms
92,520 KB
testcase_04 AC 40 ms
54,144 KB
testcase_05 AC 46 ms
60,416 KB
testcase_06 TLE -
testcase_07 AC 39 ms
53,504 KB
testcase_08 AC 39 ms
53,888 KB
testcase_09 AC 40 ms
53,504 KB
testcase_10 AC 40 ms
53,248 KB
testcase_11 AC 39 ms
53,888 KB
testcase_12 AC 185 ms
80,152 KB
testcase_13 AC 85 ms
77,172 KB
testcase_14 AC 39 ms
53,760 KB
testcase_15 AC 345 ms
92,416 KB
testcase_16 AC 236 ms
86,788 KB
testcase_17 AC 70 ms
72,832 KB
testcase_18 AC 40 ms
53,632 KB
testcase_19 AC 39 ms
54,016 KB
testcase_20 AC 39 ms
53,632 KB
testcase_21 AC 101 ms
77,184 KB
testcase_22 AC 40 ms
53,760 KB
testcase_23 AC 39 ms
53,760 KB
testcase_24 AC 41 ms
54,016 KB
testcase_25 AC 39 ms
53,632 KB
testcase_26 AC 403 ms
112,916 KB
testcase_27 AC 526 ms
128,252 KB
testcase_28 AC 561 ms
145,220 KB
testcase_29 AC 675 ms
192,020 KB
testcase_30 AC 832 ms
212,324 KB
testcase_31 AC 767 ms
183,760 KB
testcase_32 AC 999 ms
250,192 KB
testcase_33 AC 562 ms
137,472 KB
testcase_34 AC 427 ms
121,124 KB
testcase_35 AC 816 ms
218,700 KB
testcase_36 AC 690 ms
193,972 KB
testcase_37 AC 493 ms
140,388 KB
testcase_38 AC 52 ms
63,232 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=[]
  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)
          D.append((bbit,q,j))
  d=deque()
  D=set(D)
  for a,b,c in D:
    d.append((a,b,c))
print(ans)
0