結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,348 KB
testcase_01 AC 38 ms
52,512 KB
testcase_02 AC 47 ms
61,884 KB
testcase_03 AC 38 ms
52,756 KB
testcase_04 AC 326 ms
77,648 KB
testcase_05 AC 292 ms
77,144 KB
testcase_06 AC 38 ms
52,928 KB
testcase_07 AC 58 ms
68,552 KB
testcase_08 AC 271 ms
76,920 KB
testcase_09 AC 180 ms
76,376 KB
testcase_10 AC 77 ms
76,388 KB
testcase_11 AC 331 ms
76,936 KB
testcase_12 AC 218 ms
76,704 KB
testcase_13 AC 42 ms
58,584 KB
testcase_14 AC 60 ms
70,916 KB
testcase_15 AC 48 ms
62,924 KB
testcase_16 AC 229 ms
76,400 KB
testcase_17 AC 108 ms
76,616 KB
testcase_18 AC 175 ms
76,744 KB
testcase_19 AC 193 ms
76,256 KB
testcase_20 AC 241 ms
77,056 KB
testcase_21 AC 224 ms
77,068 KB
testcase_22 AC 359 ms
77,388 KB
testcase_23 AC 166 ms
76,624 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

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)
for i in range(k):
  if (s >> i) & 1 != 0:
    print(friends[i])
0