結果

問題 No.506 限られたジャパリまん
ユーザー convexineqconvexineq
提出日時 2021-02-12 05:55:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 736 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,416 KB
最終ジャッジ日時 2024-06-28 04:26:36
合計ジャッジ時間 2,863 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 46 ms
58,112 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 55 ms
61,824 KB
testcase_05 AC 46 ms
58,240 KB
testcase_06 AC 41 ms
51,968 KB
testcase_07 AC 56 ms
62,208 KB
testcase_08 AC 108 ms
76,160 KB
testcase_09 AC 101 ms
76,160 KB
testcase_10 AC 61 ms
65,152 KB
testcase_11 AC 101 ms
76,032 KB
testcase_12 AC 92 ms
76,032 KB
testcase_13 AC 41 ms
51,840 KB
testcase_14 AC 52 ms
60,544 KB
testcase_15 AC 41 ms
52,480 KB
testcase_16 AC 114 ms
76,160 KB
testcase_17 AC 57 ms
62,592 KB
testcase_18 AC 59 ms
64,000 KB
testcase_19 AC 70 ms
68,096 KB
testcase_20 AC 92 ms
76,416 KB
testcase_21 AC 64 ms
65,024 KB
testcase_22 AC 110 ms
75,904 KB
testcase_23 AC 102 ms
76,416 KB
testcase_24 AC 57 ms
63,488 KB
権限があれば一括ダウンロードができます

ソースコード

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