結果

問題 No.2375 watasou and hibit's baseball
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-03-23 11:37:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 989 ms / 2,000 ms
コード長 688 bytes
コンパイル時間 237 ms
コンパイル使用メモリ 82,056 KB
実行使用メモリ 125,336 KB
最終ジャッジ日時 2024-09-30 13:09:32
合計ジャッジ時間 12,966 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 39 ms
52,392 KB
testcase_03 AC 460 ms
100,568 KB
testcase_04 AC 44 ms
59,008 KB
testcase_05 AC 45 ms
59,432 KB
testcase_06 AC 989 ms
125,136 KB
testcase_07 AC 36 ms
52,612 KB
testcase_08 AC 77 ms
84,404 KB
testcase_09 AC 40 ms
52,096 KB
testcase_10 AC 41 ms
52,480 KB
testcase_11 AC 58 ms
64,512 KB
testcase_12 AC 327 ms
122,068 KB
testcase_13 AC 155 ms
95,488 KB
testcase_14 AC 41 ms
52,096 KB
testcase_15 AC 376 ms
84,284 KB
testcase_16 AC 338 ms
81,656 KB
testcase_17 AC 222 ms
119,424 KB
testcase_18 AC 40 ms
52,352 KB
testcase_19 AC 40 ms
51,840 KB
testcase_20 AC 57 ms
64,512 KB
testcase_21 AC 233 ms
119,936 KB
testcase_22 AC 41 ms
52,224 KB
testcase_23 AC 164 ms
117,120 KB
testcase_24 AC 170 ms
116,992 KB
testcase_25 AC 41 ms
52,224 KB
testcase_26 AC 560 ms
124,764 KB
testcase_27 AC 596 ms
124,548 KB
testcase_28 AC 578 ms
124,068 KB
testcase_29 AC 597 ms
123,892 KB
testcase_30 AC 641 ms
124,184 KB
testcase_31 AC 692 ms
125,336 KB
testcase_32 AC 710 ms
125,032 KB
testcase_33 AC 580 ms
124,624 KB
testcase_34 AC 562 ms
124,580 KB
testcase_35 AC 691 ms
124,616 KB
testcase_36 AC 575 ms
123,512 KB
testcase_37 AC 450 ms
122,104 KB
testcase_38 AC 172 ms
116,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,a,b=map(int,input().split())
ball=[tuple(map(int,input().split())) for i in range(n)]
g=1
q=[[[0]*n for j in range(n)] for i in range(1<<n)]
for i in range(n):
	for j in range(n):
		if i!=j:
			x1,y1,k1=ball[i]
			x2,y2,k2=ball[j]
			if a<=abs(x1-x2)+abs(y1-y2) or b<=abs(k1-k2):
				q[(1<<i)+(1<<j)][i][j]=2
				g=2
for p in range(1<<n):
	for i in range(n):
		for j in range(n):
			if q[p][i][j]>0:
				x1,y1,k1=ball[i]
				x2,y2,k2=ball[j]
				for k in range(n):
					if (p>>k)&1==0:
						x3,y3,k3=ball[k]
						if a<=abs(x3-x1)+abs(y3-y1)+abs(x3-x2)+abs(y3-y2) or b<=abs(k3-k1):
							q[p+(1<<k)][k][i]=max(q[p+(1<<k)][k][i],q[p][i][j]+1)
							g=max(g,q[p+(1<<k)][k][i])
print(g)
0