結果

問題 No.2375 watasou and hibit's baseball
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-03-23 11:36:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 688 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 125,088 KB
最終ジャッジ日時 2024-09-30 13:09:18
合計ジャッジ時間 13,306 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 WA -
testcase_02 AC 41 ms
52,096 KB
testcase_03 AC 480 ms
100,184 KB
testcase_04 AC 48 ms
59,008 KB
testcase_05 AC 50 ms
59,264 KB
testcase_06 AC 1,007 ms
125,000 KB
testcase_07 AC 41 ms
51,968 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 338 ms
121,808 KB
testcase_13 AC 156 ms
95,232 KB
testcase_14 AC 41 ms
51,712 KB
testcase_15 AC 382 ms
84,024 KB
testcase_16 AC 347 ms
81,648 KB
testcase_17 AC 227 ms
119,296 KB
testcase_18 AC 41 ms
52,480 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 236 ms
119,808 KB
testcase_22 AC 40 ms
52,096 KB
testcase_23 WA -
testcase_24 AC 176 ms
116,864 KB
testcase_25 AC 41 ms
51,712 KB
testcase_26 AC 576 ms
124,776 KB
testcase_27 AC 602 ms
124,264 KB
testcase_28 AC 604 ms
124,064 KB
testcase_29 AC 610 ms
123,752 KB
testcase_30 AC 667 ms
123,804 KB
testcase_31 AC 695 ms
125,088 KB
testcase_32 AC 730 ms
124,780 KB
testcase_33 AC 599 ms
124,616 KB
testcase_34 AC 558 ms
124,332 KB
testcase_35 AC 684 ms
124,996 KB
testcase_36 AC 570 ms
124,024 KB
testcase_37 AC 450 ms
121,736 KB
testcase_38 AC 173 ms
117,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,a,b=map(int,input().split())
ball=[tuple(map(int,input().split())) for i in range(n)]
g=0
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