結果

問題 No.506 限られたジャパリまん
ユーザー rlangevinrlangevin
提出日時 2023-09-27 12:26:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 1,192 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 76,672 KB
最終ジャッジ日時 2024-07-20 06:33:24
合計ジャッジ時間 3,135 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,348 KB
testcase_01 AC 43 ms
51,712 KB
testcase_02 AC 51 ms
59,520 KB
testcase_03 AC 38 ms
51,712 KB
testcase_04 AC 76 ms
75,904 KB
testcase_05 AC 67 ms
75,264 KB
testcase_06 AC 41 ms
52,096 KB
testcase_07 AC 53 ms
62,720 KB
testcase_08 AC 114 ms
76,160 KB
testcase_09 AC 117 ms
76,160 KB
testcase_10 AC 64 ms
68,096 KB
testcase_11 AC 149 ms
76,564 KB
testcase_12 AC 96 ms
76,544 KB
testcase_13 AC 40 ms
52,224 KB
testcase_14 AC 50 ms
61,568 KB
testcase_15 AC 42 ms
51,968 KB
testcase_16 AC 113 ms
76,672 KB
testcase_17 AC 62 ms
68,224 KB
testcase_18 AC 73 ms
76,288 KB
testcase_19 AC 87 ms
76,628 KB
testcase_20 AC 91 ms
76,160 KB
testcase_21 AC 78 ms
76,288 KB
testcase_22 AC 95 ms
76,416 KB
testcase_23 AC 116 ms
76,672 KB
testcase_24 AC 70 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def popcount(n):
    cnt = 0
    while n:
        cnt += n & 1
        n >>= 1
    return cnt


H, W, K, P = map(int, input().split())
mod = 10 ** 9 + 7
L = []
G = [[1] * (W + 1) for i in range(H + 1)]
for i in range(K):
    lst = input().split()
    lst[0] = int(lst[0])
    lst[1] = int(lst[1])
    G[lst[0]][lst[1]] = 0
    lst.append(i)
    L.append(lst)

K2 = 1 << K
maxv = 0
name = None

def calc():
    dp = [[0] * (W + 1) for i in range(H + 1)]
    dp[0][0] = 1
    for i in range(H + 1):
        for j in range(W + 1):
            if i == j == 0 or G[i][j] == 0:
                continue
            if i:
                dp[i][j] += dp[i - 1][j]
            if j:
                dp[i][j] += dp[i][j - 1]
    return dp[H][W]



for s in range(K2):
    if popcount(s) != P:
        continue
    for x, y, _, ind in L:
        if (s >> ind) & 1:
            G[x][y] = 1

    temp = calc()
    if temp > maxv:
        maxv = temp
        name = []
        for x, y, n, ind in L:
            if (s >> ind) & 1:
                name.append(n)

    for x, y, _, ind in L:
        if (s >> ind) & 1:
            G[x][y] = 0
    
print(maxv%mod)
if name:
    for n in name:
        print(n)
0