結果
問題 | No.519 アイドルユニット |
ユーザー | vwxyz |
提出日時 | 2021-07-23 11:47:31 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 258 ms / 1,000 ms |
コード長 | 998 bytes |
コンパイル時間 | 312 ms |
コンパイル使用メモリ | 82,200 KB |
実行使用メモリ | 99,476 KB |
最終ジャッジ日時 | 2024-07-18 08:08:21 |
合計ジャッジ時間 | 7,119 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 227 ms
99,036 KB |
testcase_01 | AC | 239 ms
99,376 KB |
testcase_02 | AC | 176 ms
93,712 KB |
testcase_03 | AC | 151 ms
91,424 KB |
testcase_04 | AC | 119 ms
89,744 KB |
testcase_05 | AC | 121 ms
89,668 KB |
testcase_06 | AC | 118 ms
89,620 KB |
testcase_07 | AC | 119 ms
89,636 KB |
testcase_08 | AC | 138 ms
90,460 KB |
testcase_09 | AC | 157 ms
90,760 KB |
testcase_10 | AC | 145 ms
91,304 KB |
testcase_11 | AC | 159 ms
91,540 KB |
testcase_12 | AC | 118 ms
89,756 KB |
testcase_13 | AC | 150 ms
91,544 KB |
testcase_14 | AC | 155 ms
91,080 KB |
testcase_15 | AC | 151 ms
91,516 KB |
testcase_16 | AC | 150 ms
91,804 KB |
testcase_17 | AC | 167 ms
91,520 KB |
testcase_18 | AC | 151 ms
91,572 KB |
testcase_19 | AC | 149 ms
91,532 KB |
testcase_20 | AC | 152 ms
91,476 KB |
testcase_21 | AC | 151 ms
91,516 KB |
testcase_22 | AC | 149 ms
91,692 KB |
testcase_23 | AC | 148 ms
91,492 KB |
testcase_24 | AC | 155 ms
91,492 KB |
testcase_25 | AC | 151 ms
91,572 KB |
testcase_26 | AC | 153 ms
91,608 KB |
testcase_27 | AC | 160 ms
91,612 KB |
testcase_28 | AC | 164 ms
91,684 KB |
testcase_29 | AC | 257 ms
99,476 KB |
testcase_30 | AC | 237 ms
99,220 KB |
testcase_31 | AC | 240 ms
99,248 KB |
testcase_32 | AC | 258 ms
99,244 KB |
testcase_33 | AC | 118 ms
89,652 KB |
ソースコード
import bisect import copy import decimal import fractions import heapq import itertools import math import random import sys from collections import Counter,deque,defaultdict from functools import lru_cache,reduce from heapq import heappush,heappop,heapify,heappushpop,_heappop_max,_heapify_max def _heappush_max(heap,item): heap.append(item) heapq._siftdown_max(heap, 0, len(heap)-1) def _heappushpop_max(heap, item): if heap and item < heap[0]: item, heap[0] = heap[0], item heapq._siftup_max(heap, 0) return item from math import gcd as GCD read=sys.stdin.read readline=sys.stdin.readline readlines=sys.stdin.readlines N=int(readline()) F=[list(map(int,readline().split())) for i in range(N)] @lru_cache(maxsize=None) def main(bit): if bit==0: return 0 lst=[i for i in range(N) if bit>>i&1] l=len(lst) m=0 for i in range(1,l): m=max(m,main(bit^1<<lst[0]^1<<lst[i])+F[lst[0]][lst[i]]) return m ans=main((1<<N)-1) print(ans)