結果
問題 | No.506 限られたジャパリまん |
ユーザー | fiord |
提出日時 | 2017-07-12 07:47:40 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 859 bytes |
コンパイル時間 | 92 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 16,128 KB |
最終ジャッジ日時 | 2024-06-28 04:19:29 |
合計ジャッジ時間 | 3,690 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
16,128 KB |
testcase_01 | AC | 32 ms
10,752 KB |
testcase_02 | AC | 35 ms
10,880 KB |
testcase_03 | AC | 30 ms
10,752 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
ソースコード
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])