結果
問題 | No.943 取り調べ |
ユーザー | mkawa2 |
提出日時 | 2021-04-07 16:23:40 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,265 bytes |
コンパイル時間 | 673 ms |
コンパイル使用メモリ | 82,256 KB |
実行使用メモリ | 78,108 KB |
最終ジャッジ日時 | 2024-06-22 16:57:19 |
合計ジャッジ時間 | 5,527 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 34 ms
52,988 KB |
testcase_01 | AC | 33 ms
53,384 KB |
testcase_02 | AC | 33 ms
52,616 KB |
testcase_03 | AC | 33 ms
52,252 KB |
testcase_04 | AC | 567 ms
76,980 KB |
testcase_05 | AC | 204 ms
76,780 KB |
testcase_06 | AC | 227 ms
76,220 KB |
testcase_07 | AC | 35 ms
54,124 KB |
testcase_08 | AC | 876 ms
78,108 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 35 ms
53,568 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 39 ms
59,944 KB |
testcase_16 | AC | 32 ms
52,772 KB |
testcase_17 | AC | 244 ms
76,936 KB |
testcase_18 | AC | 37 ms
53,556 KB |
testcase_19 | AC | 60 ms
68,100 KB |
testcase_20 | AC | 45 ms
61,488 KB |
testcase_21 | WA | - |
testcase_22 | AC | 328 ms
77,564 KB |
testcase_23 | WA | - |
ソースコード
import sys sys.setrecursionlimit(10**6) int1 = lambda x: int(x)-1 p2D = lambda x: print(*x, sep="\n") def II(): return int(sys.stdin.buffer.readline()) def LI(): return list(map(int, sys.stdin.buffer.readline().split())) def LI1(): return list(map(int1, sys.stdin.buffer.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def LLI1(rows_number): return [LI1() for _ in range(rows_number)] def BI(): return sys.stdin.buffer.readline().rstrip() def SI(): return sys.stdin.buffer.readline().rstrip().decode() # dij = [(0, 1), (-1, 0), (0, -1), (1, 0)] # dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)] dij = [(0, 1), (1, 0), (1, 1), (1, -1)] inf = 10**19 # md = 998244353 md = 10**9+7 n = II() ss = [] for u in range(n): s = SI() s = s.replace(" ", "") ss.append(int(s[::-1], 2)) aa = LI() def ok(bit, ss): for _ in range(n): nss = [] for u, s in enumerate(ss): if bit & s == s: bit |= 1 << u else: nss.append(s) if not nss: return True ss = nss return False ans = inf for bit in range(1 << n): cost = sum(aa[u] for u in range(n) if bit >> u & 1) if cost >= ans: continue if ok(bit, ss[:]): ans = cost print(ans)