結果

問題 No.506 限られたジャパリまん
ユーザー qibqib
提出日時 2022-12-24 17:06:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 368 ms / 2,000 ms
コード長 905 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 77,184 KB
最終ジャッジ日時 2024-06-28 04:29:15
合計ジャッジ時間 5,181 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,336 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 48 ms
60,928 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 364 ms
77,184 KB
testcase_05 AC 333 ms
76,672 KB
testcase_06 AC 39 ms
52,096 KB
testcase_07 AC 59 ms
66,944 KB
testcase_08 AC 287 ms
76,416 KB
testcase_09 AC 185 ms
76,544 KB
testcase_10 AC 80 ms
76,160 KB
testcase_11 AC 344 ms
76,800 KB
testcase_12 AC 231 ms
76,676 KB
testcase_13 AC 41 ms
57,216 KB
testcase_14 AC 62 ms
70,144 KB
testcase_15 AC 49 ms
61,568 KB
testcase_16 AC 232 ms
76,160 KB
testcase_17 AC 109 ms
76,928 KB
testcase_18 AC 183 ms
76,948 KB
testcase_19 AC 209 ms
76,400 KB
testcase_20 AC 248 ms
76,672 KB
testcase_21 AC 228 ms
76,800 KB
testcase_22 AC 368 ms
77,184 KB
testcase_23 AC 171 ms
76,544 KB
testcase_24 AC 189 ms
76,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7

h, w, k, p = map(int, input().split())
points = []
friends = []
for _ in range(k):
  x, y, name = input().split()
  points.append((int(x), int(y)))
  friends.append(name)

dp = [[-1 for _ in range(w + 1)] for _ in range(h + 1)]
s = None
for mask in range(1 << k):
  ndp = [[0 for _ in range(w + 1)] for _ in range(h + 1)]
  ndp[0][0] = 1
  banned = {}
  for i in range(k):
    if (mask >> i) & 1 != 0:
      continue
    x, y = points[i]
    banned[(x, y)] = True

  if len(banned) != k - p:
    continue

  for x in range(h + 1):
    for y in range(w + 1):
      if banned.get((x, y), False):
        continue
      if x > 0:
        ndp[x][y] += ndp[x - 1][y]
      if y > 0:
        ndp[x][y] += ndp[x][y - 1]

  if dp[-1][-1] < ndp[-1][-1]:
    dp = ndp
    s = mask

print(dp[-1][-1] % MOD)
if dp[-1][-1] != 0:
  for i in range(k):
    if (s >> i) & 1 != 0:
      print(friends[i])
0