結果

問題 No.506 限られたジャパリまん
ユーザー fiordfiord
提出日時 2017-07-12 07:48:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 998 ms / 2,000 ms
コード長 859 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,408 KB
最終ジャッジ日時 2024-06-28 04:19:48
合計ジャッジ時間 7,968 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,968 KB
testcase_01 AC 45 ms
51,968 KB
testcase_02 AC 52 ms
62,336 KB
testcase_03 AC 37 ms
51,840 KB
testcase_04 AC 988 ms
77,408 KB
testcase_05 AC 998 ms
77,080 KB
testcase_06 AC 38 ms
51,584 KB
testcase_07 AC 61 ms
66,432 KB
testcase_08 AC 260 ms
76,684 KB
testcase_09 AC 153 ms
76,388 KB
testcase_10 AC 90 ms
76,416 KB
testcase_11 AC 562 ms
76,544 KB
testcase_12 AC 283 ms
76,408 KB
testcase_13 AC 38 ms
51,968 KB
testcase_14 AC 67 ms
71,148 KB
testcase_15 AC 38 ms
52,480 KB
testcase_16 AC 239 ms
76,416 KB
testcase_17 AC 151 ms
76,160 KB
testcase_18 AC 336 ms
76,288 KB
testcase_19 AC 98 ms
76,416 KB
testcase_20 AC 568 ms
76,800 KB
testcase_21 AC 568 ms
77,056 KB
testcase_22 AC 903 ms
77,184 KB
testcase_23 AC 287 ms
76,416 KB
testcase_24 AC 81 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w, k, p = map(int, input().split())
dat = []
for i in range(k):
    x, y, n = input().split()
    x = int(x)
    y = int(y)
    dat.append([x, y, n])
ret = 0
num = 0
for i in range(1 << k):
    if p < bin(i).count("1"):
        continue
    cnt = [[0] * (w + 1) for j in range(h + 1)]
    cnt[0][0] = 1
    for j in range(k):
        if not (i >> j) & 1:
            cnt[dat[j][0]][dat[j][1]] = -1
    for x in range(h + 1):
        for y in range(w + 1):
            if cnt[x][y] == -1:
                continue
            if x + 1 <= h and cnt[x + 1][y] != -1:
                cnt[x + 1][y] += cnt[x][y]
            if y + 1 <= w and cnt[x][y + 1] != -1:
                cnt[x][y + 1] += cnt[x][y]
    if cnt[h][w] > num:
        num = cnt[h][w]
        ret = i
print(num % (10**9 + 7))
for i in range(k):
    if (ret >> i) & 1:
        print(dat[i][2])
0