結果

問題 No.506 限られたジャパリまん
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-28 19:58:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,275 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 354,016 KB
最終ジャッジ日時 2024-09-28 19:58:28
合計ジャッジ時間 13,175 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
54,152 KB
testcase_01 AC 35 ms
52,788 KB
testcase_02 AC 52 ms
66,784 KB
testcase_03 AC 36 ms
53,432 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 37 ms
53,132 KB
testcase_07 WA -
testcase_08 AC 488 ms
143,468 KB
testcase_09 AC 251 ms
103,008 KB
testcase_10 AC 88 ms
77,016 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 47 ms
64,620 KB
testcase_14 WA -
testcase_15 AC 57 ms
68,812 KB
testcase_16 AC 382 ms
128,292 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 500 ms
148,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w,K,P=map(int,input().split())
f=[]
o=[[-1]*(w+1) for i in range(h+1)]
for i in range(K):
  x,y,n=input().split()
  f+=[n]
  x=int(x)
  y=int(y)
  o[x][y]=i
M=10**9+7
v=[[0]*(w+1) for i in range(h+1)]
q=[[[0]*(1<<K) for j in range(w+1)] for i in range(h+1)]
q[0][0][0]=1
v[0][0]=1
for i in range(h+1):
  for j in range(w+1):
    for k in range(1<<K):
      if i+1<=h:
        if o[i+1][j]!=-1:
          if k.bit_count()+1<=K:
            q[i+1][j][k|(1<<o[i+1][j])]+=q[i][j][k]
            q[i+1][j][k|(1<<o[i+1][j])]%=M
            v[i+1][j]=1
        else:
          q[i+1][j][k]+=q[i][j][k]
          q[i+1][j][k]%=M
          v[i+1][j]=1
      if j+1<=w:
        if o[i][j+1]!=-1:
          if k.bit_count()+1<=P:
            q[i][j+1][k|(1<<o[i][j+1])]+=q[i][j][k]
            q[i][j+1][k|(1<<o[i][j+1])]%=M
            v[i][j+1]=1
        else:
          q[i][j+1][k]+=q[i][j][k]
          q[i][j+1][k]%=M
          v[i][j+1]=1
if v[h][w]:
  for j in range(K):
    for i in range(1<<K):
      if (i>>j)&1:
        q[h][w][i]+=q[h][w][i^(1<<j)]
        q[h][w][i]%=M
  a=0
  p=0
  for i in range(1<<K):
    if i.bit_count()<=P:
      if q[h][w][i]>a:
        a=q[h][w][i]
        p=i
  print(a)
  for i in range(K):
    if (p>>i)&1:
      print(f[i])
else:
  print(0)
0