結果

問題 No.506 限られたジャパリまん
ユーザー lloyzlloyz
提出日時 2023-04-08 11:05:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,907 ms / 2,000 ms
コード長 966 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 77,960 KB
最終ジャッジ日時 2024-06-28 04:29:37
合計ジャッジ時間 13,288 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,352 KB
testcase_01 AC 39 ms
52,608 KB
testcase_02 AC 57 ms
65,132 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 1,888 ms
77,448 KB
testcase_05 AC 1,907 ms
77,960 KB
testcase_06 AC 40 ms
51,968 KB
testcase_07 AC 68 ms
70,400 KB
testcase_08 AC 443 ms
76,404 KB
testcase_09 AC 217 ms
76,416 KB
testcase_10 AC 96 ms
76,408 KB
testcase_11 AC 964 ms
76,536 KB
testcase_12 AC 481 ms
76,544 KB
testcase_13 AC 43 ms
57,344 KB
testcase_14 AC 77 ms
76,288 KB
testcase_15 AC 52 ms
64,128 KB
testcase_16 AC 341 ms
76,416 KB
testcase_17 AC 220 ms
76,032 KB
testcase_18 AC 554 ms
76,544 KB
testcase_19 AC 211 ms
76,928 KB
testcase_20 AC 976 ms
76,864 KB
testcase_21 AC 952 ms
76,768 KB
testcase_22 AC 1,779 ms
77,272 KB
testcase_23 AC 504 ms
76,444 KB
testcase_24 AC 168 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

Directions = [(1, 0), (0, 1)]
ans = 0
ans_bit = -1
for bit in range(1 << k):
    DP = [[0 for _ in range(w + 1)] for _ in range(h + 1)]
    DP[0][0] = 1
    cnt = 0
    for i in range(k):
        if (bit >> i) & 1:
            cnt += 1
        else:
            x, y = P[i]
            DP[x][y] = -1
    if cnt > p:
        continue
    for i in range(h + 1):
        for j in range(w + 1):
            if DP[i][j] > 0:
                for di, dj in Directions:
                    ni, nj = i + di, j + dj
                    if ni <= h and nj <= w and DP[ni][nj] != -1:
                        DP[ni][nj] += DP[i][j]
    if DP[h][w] > ans:
        ans = DP[h][w]
        ans_bit = bit

mod = 10**9 + 7
print(ans % mod)
if ans > 0:
    for i in range(k):
        if (ans_bit >> i) & 1:
            print(N[i])
0