結果

問題 No.506 限られたジャパリまん
ユーザー convexineqconvexineq
提出日時 2021-02-12 05:52:24
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 733 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-06-28 04:25:58
合計ジャッジ時間 2,597 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
51,840 KB
testcase_01 RE -
testcase_02 AC 47 ms
58,496 KB
testcase_03 AC 40 ms
52,352 KB
testcase_04 AC 53 ms
62,208 KB
testcase_05 AC 44 ms
58,368 KB
testcase_06 AC 39 ms
52,224 KB
testcase_07 AC 52 ms
62,336 KB
testcase_08 AC 99 ms
76,416 KB
testcase_09 AC 93 ms
76,160 KB
testcase_10 AC 57 ms
64,896 KB
testcase_11 AC 92 ms
76,288 KB
testcase_12 AC 84 ms
76,312 KB
testcase_13 AC 39 ms
52,224 KB
testcase_14 AC 50 ms
60,928 KB
testcase_15 AC 40 ms
52,480 KB
testcase_16 AC 106 ms
76,288 KB
testcase_17 AC 53 ms
63,232 KB
testcase_18 AC 54 ms
64,128 KB
testcase_19 AC 60 ms
68,480 KB
testcase_20 AC 81 ms
76,544 KB
testcase_21 AC 56 ms
65,280 KB
testcase_22 AC 100 ms
76,160 KB
testcase_23 AC 92 ms
76,288 KB
testcase_24 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    dp = [[0]*w for _ in range(h)]
    dp[0][0] = 1
    for i in range(h):
        for j in range(w):
            if i==0==j or b[i][j]==0: continue
            if i: dp[i][j] += dp[i-1][j]
            if j: dp[i][j] += dp[i][j-1]
    return dp[-1][-1]

h,w,k,p = map(int,input().split())
h += 1; w += 1
pos = []
for _ in range(k):
    x,y,s = input().split()
    pos.append((int(x),int(y),s))

b = [[1]*w for _ in range(h)]
ans = val = 0
from itertools import combinations
for lst in combinations(pos,p):
    for x,y,s in pos:
        b[x][y] = 0
    for x,y,s in lst:
        b[x][y] = 1
    v = solve()
    if val < v:
        ans = (xys[2] for xys in lst)
        val = v

print(val%(10**9+7))
for i in ans: print(i)
0