結果
問題 | No.2375 watasou and hibit's baseball |
ユーザー | ikoma |
提出日時 | 2023-07-07 23:05:04 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,357 bytes |
コンパイル時間 | 330 ms |
コンパイル使用メモリ | 82,192 KB |
実行使用メモリ | 79,900 KB |
最終ジャッジ日時 | 2024-07-21 19:26:03 |
合計ジャッジ時間 | 6,414 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
59,704 KB |
testcase_01 | AC | 39 ms
53,204 KB |
testcase_02 | AC | 39 ms
53,700 KB |
testcase_03 | AC | 57 ms
65,448 KB |
testcase_04 | AC | 39 ms
53,136 KB |
testcase_05 | AC | 39 ms
53,360 KB |
testcase_06 | AC | 40 ms
53,276 KB |
testcase_07 | AC | 39 ms
54,088 KB |
testcase_08 | AC | 40 ms
53,624 KB |
testcase_09 | AC | 39 ms
52,924 KB |
testcase_10 | AC | 39 ms
53,348 KB |
testcase_11 | AC | 40 ms
52,956 KB |
testcase_12 | AC | 66 ms
74,788 KB |
testcase_13 | AC | 63 ms
69,236 KB |
testcase_14 | AC | 40 ms
52,772 KB |
testcase_15 | AC | 38 ms
53,160 KB |
testcase_16 | AC | 41 ms
52,392 KB |
testcase_17 | AC | 62 ms
67,264 KB |
testcase_18 | AC | 41 ms
52,880 KB |
testcase_19 | AC | 40 ms
53,016 KB |
testcase_20 | AC | 39 ms
53,104 KB |
testcase_21 | AC | 74 ms
73,776 KB |
testcase_22 | AC | 40 ms
53,260 KB |
testcase_23 | AC | 39 ms
53,436 KB |
testcase_24 | AC | 40 ms
53,356 KB |
testcase_25 | AC | 39 ms
53,088 KB |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
ソースコード
N,A,B=map(int,input().split()) XYK=[list(map(int,input().split())) for _ in range(N)] dist = [[0]*N for _ in range(N)] distK = [[0]*N for _ in range(N)] for i in range(N): x1,y1,k1 = XYK[i] for j in range(N): x2,y2,k2 = XYK[j] dist[i][j] = dist[j][i] = abs(x1-x2)+abs(y1-y2) distK[i][j] = distK[j][i] = abs(k2-k1) visit = [0]*N def dfs(route:list): ret = len(route) for i in range(N): if visit[i]:continue i0,i1 = route[-2:] flg=0 if distK[i1][i]>=B: flg=1 else: if A<=dist[i][i1]+dist[i][i0]: flg=1 if flg: route.append(i) visit[i]=1 ret2 = dfs(route) visit[i]=0 route.pop() ret = max(ret, ret2) if ret==N: print(N) exit() return ret def solve(): ret = 1 route = [] for i in range(N): route.append(i) visit[i]=1 for j in range(N): if i==j:continue if A<=dist[i][j] or B<=distK[i][j]: if ret==1:ret=2 route.append(j) visit[j]=1 ret2 = dfs(route) ret = max(ret, ret2) route.pop() visit[j]=0 visit[i]=0 route.pop() return ret print(solve())