結果

問題 No.479 頂点は要らない
ユーザー ckawatakckawatak
提出日時 2019-03-24 22:08:44
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 845 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 268,544 KB
最終ジャッジ日時 2024-10-04 15:39:45
合計ジャッジ時間 5,616 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
58,624 KB
testcase_01 AC 37 ms
54,784 KB
testcase_02 AC 103 ms
77,544 KB
testcase_03 AC 39 ms
54,784 KB
testcase_04 AC 36 ms
53,888 KB
testcase_05 AC 38 ms
54,784 KB
testcase_06 AC 40 ms
53,504 KB
testcase_07 AC 37 ms
54,400 KB
testcase_08 AC 36 ms
54,144 KB
testcase_09 AC 35 ms
53,504 KB
testcase_10 AC 36 ms
54,016 KB
testcase_11 AC 35 ms
53,248 KB
testcase_12 AC 36 ms
53,504 KB
testcase_13 AC 43 ms
61,824 KB
testcase_14 AC 171 ms
79,276 KB
testcase_15 AC 171 ms
78,976 KB
testcase_16 AC 148 ms
80,008 KB
testcase_17 AC 147 ms
79,332 KB
testcase_18 AC 128 ms
78,292 KB
testcase_19 TLE -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from copy import deepcopy

N,M = list(map(int, input().split(' ')))

G = {}
for m in range(M):
    a,b = list(map(int, input().split(' ')))
    if a not in G:
        G[a] = [b]
    else:
        G[a].append(b)
    if b not in G:
        G[b] = [a]
    else:
        G[b].append(a)

def remove_edge_on(graph,node):
    new_graph = deepcopy(graph)
    for adj in new_graph[node]:
        new_graph[adj].remove(node)
    removed_edge = len(new_graph[node])
    new_graph[node] = []
    return new_graph,removed_edge

def solve(graph, i, edge, cost):
    if edge != M and i == N:
        return float('inf')
    if edge == M:
        return cost

    new_graph,removed_edge = remove_edge_on(graph, i)

    return min(solve(graph, i+1, edge, cost),
               solve(new_graph, i+1, edge+removed_edge, cost+2**i))

print(bin(solve(G,0,0,0))[2:])
0