結果
問題 | No.2478 Disjoint-Sparse-Table Optimization |
ユーザー | maspy |
提出日時 | 2023-11-26 04:16:27 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 685 bytes |
コンパイル時間 | 366 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-09-26 11:28:21 |
合計ジャッジ時間 | 1,672 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
ソースコード
import networkx as nx N=int(input()) L = [] R = [] for _ in range(N): a,b=map(int,input().split()) a,b=a-1,b-1 L.append(a) R.append(b) A = [0] + list(map(int,input().split())) for i in range(2*N-1): A[i+1] += A[i] G = nx.Graph() edges = [] for i in range(N): for j in range(N): if i == j: continue if L[i] < L[j] < R[i] < R[j]: edges.append((i, j, A[R[i]] - A[L[j]])) G.add_weighted_edges_from(edges) match = nx.max_weight_matching(G) wt = 0 for a,b,c in edges: if (a,b) in match or (b,a) in match: wt += c ANS = 0 for i in range(N): print(L[i],R[i]) ANS += A[R[i]] - A[L[i]] ANS -= wt print(ANS)