結果

問題 No.506 限られたジャパリまん
ユーザー maspymaspy
提出日時 2020-03-17 22:53:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 1,179 bytes
コンパイル時間 402 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-06-28 04:23:16
合計ジャッジ時間 2,609 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 53 ms
58,240 KB
testcase_03 AC 41 ms
52,096 KB
testcase_04 AC 50 ms
60,288 KB
testcase_05 AC 47 ms
57,728 KB
testcase_06 AC 42 ms
52,224 KB
testcase_07 AC 49 ms
59,776 KB
testcase_08 AC 112 ms
76,288 KB
testcase_09 AC 97 ms
76,544 KB
testcase_10 AC 54 ms
61,952 KB
testcase_11 AC 107 ms
76,544 KB
testcase_12 AC 98 ms
76,160 KB
testcase_13 AC 41 ms
52,096 KB
testcase_14 AC 48 ms
59,904 KB
testcase_15 AC 42 ms
51,968 KB
testcase_16 AC 105 ms
76,416 KB
testcase_17 AC 54 ms
62,080 KB
testcase_18 AC 56 ms
62,720 KB
testcase_19 AC 71 ms
70,400 KB
testcase_20 AC 74 ms
73,472 KB
testcase_21 AC 56 ms
63,488 KB
testcase_22 AC 79 ms
75,776 KB
testcase_23 AC 68 ms
70,400 KB
testcase_24 AC 57 ms
63,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3.8
# %%
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
import itertools
MOD = 10**9 + 7

# %%
H, W, K, P = map(int, readline().split())
X = []
Y = []
N = []
for _ in range(K):
    x, y, n = readline().decode().split()
    x = int(x)
    y = int(y)
    X.append(x)
    Y.append(y)
    N.append(n)


# %%
def solve(subset):
    dp = [[0] * (W + 2) for _ in range(H + 2)]
    dp[0][0] = 1
    forbit = [[0] * (W + 1) for _ in range(H + 1)]
    for i in subset:
        x = X[i]
        y = Y[i]
        forbit[x][y] = 1
    for h in range(H + 1):
        for w in range(W + 1):
            if forbit[h][w]:
                dp[h][w] = 0
                continue
            dp[h + 1][w] += dp[h][w]
            dp[h][w + 1] += dp[h][w]
    return dp[H][W]


# %%
best_subset = 0
best_path = 0
for s in itertools.combinations(range(K), K - P):
    x = solve(s)
    if best_path < x:
        best_path = x
        best_subset = s

# %%
if best_path == 0:
    print(0)
else:
    print(best_path % MOD)
    for i in range(K):
        if i in best_subset:
            continue
        print(N[i])
0