結果

問題 No.506 限られたジャパリまん
ユーザー h_nosonh_noson
提出日時 2017-06-15 22:53:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 959 ms / 2,000 ms
コード長 1,040 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,028 KB
最終ジャッジ日時 2024-06-28 04:19:10
合計ジャッジ時間 7,999 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,608 KB
testcase_01 AC 41 ms
52,352 KB
testcase_02 AC 59 ms
62,976 KB
testcase_03 AC 41 ms
52,280 KB
testcase_04 AC 945 ms
76,924 KB
testcase_05 AC 959 ms
77,028 KB
testcase_06 AC 38 ms
52,480 KB
testcase_07 AC 56 ms
64,256 KB
testcase_08 AC 243 ms
76,544 KB
testcase_09 AC 155 ms
76,288 KB
testcase_10 AC 89 ms
76,416 KB
testcase_11 AC 566 ms
76,160 KB
testcase_12 AC 271 ms
76,060 KB
testcase_13 AC 41 ms
51,968 KB
testcase_14 AC 78 ms
70,784 KB
testcase_15 AC 42 ms
52,224 KB
testcase_16 AC 223 ms
76,416 KB
testcase_17 AC 150 ms
76,160 KB
testcase_18 AC 348 ms
76,416 KB
testcase_19 AC 96 ms
76,240 KB
testcase_20 AC 585 ms
76,672 KB
testcase_21 AC 565 ms
76,328 KB
testcase_22 AC 894 ms
76,800 KB
testcase_23 AC 278 ms
76,104 KB
testcase_24 AC 87 ms
75,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def popcount(x):
    ret = 0
    while x:
        x &= x-1
        ret += 1
    return ret

MOD = 10**9+7

h, w, k, p = map(int,input().split(' '))
x = [0] * k
y = [0] * k
n = [""] * k
m = [[True] * (w+1) for i in range(h+1)]
for i in range(k):
    a,b,n[i] = input().split(' ')
    x[i] = int(a)
    y[i] = int(b)
    m[x[i]][y[i]] = False

mx = 0
bits = -1
for i in range(1<<k):
    if popcount(i) <= p:
        for j in range(k):
            if i&1<<j:
                m[x[j]][y[j]] = True
        s = [[0] * (w+1) for i in range(h+1)]
        s[0][0] = 1
        for a in range(h+1):
            for b in range(w+1):
                if a < h and m[a+1][b]:
                    s[a+1][b] += s[a][b]
                if b < w and m[a][b+1]:
                    s[a][b+1] += s[a][b]
        if s[h][w] > mx:
            mx = s[h][w]
            bits = i
        for j in range(k):
            if i&1<<j:
                m[x[j]][y[j]] = False
print(mx % MOD)
if bits >= 0:
    for j in range(k):
        if bits&1<<j:
            print(n[j])
0