結果

問題 No.506 限られたジャパリまん
ユーザー mkawa2mkawa2
提出日時 2020-05-21 16:01:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 483 ms / 2,000 ms
コード長 1,460 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 77,184 KB
最終ジャッジ日時 2024-06-28 04:24:09
合計ジャッジ時間 5,191 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
54,444 KB
testcase_01 AC 43 ms
54,144 KB
testcase_02 AC 51 ms
62,208 KB
testcase_03 AC 44 ms
54,912 KB
testcase_04 AC 481 ms
76,752 KB
testcase_05 AC 483 ms
76,800 KB
testcase_06 AC 45 ms
54,784 KB
testcase_07 AC 51 ms
61,824 KB
testcase_08 AC 172 ms
76,800 KB
testcase_09 AC 120 ms
76,800 KB
testcase_10 AC 68 ms
71,936 KB
testcase_11 AC 296 ms
77,056 KB
testcase_12 AC 179 ms
76,928 KB
testcase_13 AC 44 ms
54,784 KB
testcase_14 AC 67 ms
71,552 KB
testcase_15 AC 45 ms
54,656 KB
testcase_16 AC 153 ms
76,672 KB
testcase_17 AC 103 ms
76,652 KB
testcase_18 AC 188 ms
76,768 KB
testcase_19 AC 89 ms
76,544 KB
testcase_20 AC 267 ms
76,948 KB
testcase_21 AC 274 ms
76,928 KB
testcase_22 AC 470 ms
77,184 KB
testcase_23 AC 171 ms
76,840 KB
testcase_24 AC 78 ms
76,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from operator import itemgetter
from itertools import *
from bisect import *
from collections import *
from heapq import *
import sys

sys.setrecursionlimit(10 ** 6)

def II(): return int(sys.stdin.readline())
def MI(): return map(int, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def SI(): return sys.stdin.readline()[:-1]
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
int1 = lambda x: int(x) - 1
def MI1(): return map(int1, sys.stdin.readline().split())
def LI1(): return list(map(int1, sys.stdin.readline().split()))
p2D = lambda x: print(*x, sep="\n")
dij = [(1, 0), (0, 1), (-1, 0), (0, -1)]

def main():
    md=10**9+7
    h,w,k,p=MI()
    friends=[SI().split() for _ in range(k)]
    ans=0
    abit=(1<<k)-1
    for bit in range(1<<k):
        if k-bin(bit).count("1")>p:continue
        dp=[[0]*(w+2) for _ in range(h+2)]
        for fi in range(k):
            if bit>>fi&1:
                i,j,_=friends[fi]
                dp[int(i)+1][int(j)+1]=-1
        dp[0][1]=1

        for i in range(h+1):
            for j in range(w+1):
                if dp[i+1][j+1]==-1:dp[i+1][j+1]=0
                else:dp[i+1][j+1]=(dp[i][j+1]+dp[i+1][j])

        if dp[h+1][w+1]>ans:
            ans=dp[h+1][w+1]
            abit=bit

    print(ans%md)
    for fi in range(k):
        if abit>>fi&1==0:print(friends[fi][2])

main()
0