結果
問題 | No.506 限られたジャパリまん |
ユーザー | mkawa2 |
提出日時 | 2020-05-21 16:00:13 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,460 bytes |
コンパイル時間 | 155 ms |
コンパイル使用メモリ | 82,164 KB |
実行使用メモリ | 77,748 KB |
最終ジャッジ日時 | 2024-06-28 04:24:18 |
合計ジャッジ時間 | 7,757 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 45 ms
54,656 KB |
testcase_01 | AC | 45 ms
55,040 KB |
testcase_02 | AC | 52 ms
62,592 KB |
testcase_03 | AC | 44 ms
54,528 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 43 ms
54,528 KB |
testcase_07 | WA | - |
testcase_08 | AC | 255 ms
76,712 KB |
testcase_09 | AC | 144 ms
76,928 KB |
testcase_10 | AC | 71 ms
72,320 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 44 ms
54,528 KB |
testcase_14 | WA | - |
testcase_15 | AC | 45 ms
55,168 KB |
testcase_16 | AC | 219 ms
76,672 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 | 80 ms
76,800 KB |
ソースコード
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])%md if dp[h+1][w+1]>ans: ans=dp[h+1][w+1] abit=bit print(ans) for fi in range(k): if abit>>fi&1==0:print(friends[fi][2]) main()