結果

問題 No.506 限られたジャパリまん
ユーザー convexineqconvexineq
提出日時 2021-02-12 05:43:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 761 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,656 KB
最終ジャッジ日時 2024-06-28 04:25:55
合計ジャッジ時間 6,006 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 38 ms
52,224 KB
testcase_02 AC 48 ms
61,056 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 39 ms
51,712 KB
testcase_07 WA -
testcase_08 AC 162 ms
76,416 KB
testcase_09 AC 123 ms
76,288 KB
testcase_10 AC 69 ms
72,064 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 39 ms
52,480 KB
testcase_14 WA -
testcase_15 AC 42 ms
52,096 KB
testcase_16 AC 188 ms
76,284 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 68 ms
76,032 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
name = []
pos = []
for _ in range(k):
    x,y,n = input().split()
    name.append(n)
    pos.append((int(x),int(y)))

b = [[1]*w for _ in range(h)]
ans = val = 0
for mask in range(1<<k):
    c = 0
    for i in range(k):
        x,y = pos[i]
        b[x][y] = mask>>i&1
        c += mask>>i&1
    if c > p: continue
    v = solve()
    if val < v:
        ans = mask
        val = v

print(val)
for i in range(k):
    if ans>>i&1: print(name[i])
0