結果

問題 No.2375 watasou and hibit's baseball
ユーザー 👑 p-adicp-adic
提出日時 2023-07-08 16:39:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 428 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 142,608 KB
最終ジャッジ日時 2024-07-22 12:04:20
合計ジャッジ時間 58,369 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 42 ms
52,736 KB
testcase_03 AC 1,784 ms
111,200 KB
testcase_04 WA -
testcase_05 AC 63 ms
65,920 KB
testcase_06 TLE -
testcase_07 AC 41 ms
52,352 KB
testcase_08 WA -
testcase_09 AC 41 ms
52,096 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 TLE -
testcase_13 WA -
testcase_14 AC 40 ms
52,224 KB
testcase_15 AC 812 ms
89,572 KB
testcase_16 AC 554 ms
84,528 KB
testcase_17 TLE -
testcase_18 WA -
testcase_19 AC 40 ms
52,096 KB
testcase_20 WA -
testcase_21 TLE -
testcase_22 AC 42 ms
52,992 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 40 ms
52,224 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 AC 1,576 ms
125,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R=range
def J():
	return map(int,input().split())
N,A,B=J()
L=R(N)
Z=[list(J())for i in L]
P=R(1<<N)
D=[[[S>>i==1and i==j for j in L]for i in L]for S in P]
a=1
for S in P:
	for h in R(N**3):
		i,j,k=h%N,h//N%N,h//N**2
		d,v,w=D[S][i][j],Z[j],Z[k]
		if (S>>k&1<1)*d:D[S|1<<k][j][k]=d=max(D[S|1<<k][j][k],d+(abs(w[0]-Z[i][0])+abs(w[1]-Z[i][1])+(i!=j)*(abs(w[0]-v[0])+abs(w[1]-v[1]))>=A or abs(w[2]-v[2])>=B))
		a=max(a,d)
print(a)
0