結果
問題 | No.2375 watasou and hibit's baseball |
ユーザー | watasou1543 |
提出日時 | 2023-06-21 16:37:55 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,382 bytes |
コンパイル時間 | 272 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 177,432 KB |
最終ジャッジ日時 | 2024-07-08 08:45:34 |
合計ジャッジ時間 | 35,442 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
52,224 KB |
testcase_01 | AC | 36 ms
52,352 KB |
testcase_02 | AC | 37 ms
52,992 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 102 ms
76,544 KB |
testcase_06 | WA | - |
testcase_07 | AC | 35 ms
52,352 KB |
testcase_08 | WA | - |
testcase_09 | AC | 35 ms
52,608 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 36 ms
52,608 KB |
testcase_15 | WA | - |
testcase_16 | AC | 401 ms
85,132 KB |
testcase_17 | WA | - |
testcase_18 | AC | 60 ms
66,944 KB |
testcase_19 | AC | 36 ms
52,480 KB |
testcase_20 | WA | - |
testcase_21 | AC | 1,426 ms
175,468 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 36 ms
52,736 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 1,607 ms
176,236 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | AC | 1,784 ms
176,872 KB |
testcase_37 | WA | - |
testcase_38 | WA | - |
ソースコード
import math def d(a, b): return abs(x[a] - x[b]) + abs(y[a] - y[b]) n, a, b = map(int, input().split()) c = n + 1 x = [0] * 15 y = [0] * 15 k = [0] * 15 for i in range(1, n + 1): x[i], y[i], k[i] = map(int, input().split()) dp = [[[0] * (n + 1) for _ in range(n + 1)] for _ in range(1 << c)] for i in range(1, n + 1): dp[(1 << i) + 1][0][i] = 1 for i in range(1 << c): for j in range(n + 1): for l in range(1, n + 1): if j == l: continue if ((1 << j) & i) == 0 or ((1 << l) & i) == 0: continue for m in range(n + 1): if m != 0 and j == 0: continue if m == 0: if d(l, j) >= a or abs(k[l] - k[j]) >= b: if m == l or j == m: continue dp[i ^ (1 << l)][m][j] = max(dp[i ^ (1 << l)][m][j], dp[i ^ (1 << l)][m][j] + 1) else: if d(l, j) + d(l, m) >= a or abs(k[l] - k[j]) >= b: if m == l or j == m: continue dp[i ^ (1 << l)][m][j] = max(dp[i ^ (1 << l)][m][j], dp[i ^ (1 << l)][m][j] + 1) ans = 0 for i in range(1 << c): for j in range(n + 1): for l in range(n + 1): ans = max(ans, dp[i][j][l]) print(ans)