結果
問題 | No.2604 Initial Motion |
ユーザー | titia |
提出日時 | 2024-01-12 23:26:50 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,242 bytes |
コンパイル時間 | 328 ms |
コンパイル使用メモリ | 82,436 KB |
実行使用メモリ | 581,868 KB |
最終ジャッジ日時 | 2024-09-28 00:13:25 |
合計ジャッジ時間 | 4,926 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
60,796 KB |
testcase_01 | AC | 38 ms
54,476 KB |
testcase_02 | AC | 57 ms
65,684 KB |
testcase_03 | AC | 2,479 ms
96,508 KB |
testcase_04 | AC | 2,379 ms
96,192 KB |
testcase_05 | AC | 2,747 ms
97,640 KB |
testcase_06 | AC | 2,129 ms
96,260 KB |
testcase_07 | AC | 2,437 ms
96,688 KB |
testcase_08 | TLE | - |
testcase_09 | AC | 2,209 ms
96,048 KB |
testcase_10 | TLE | - |
testcase_11 | AC | 2,420 ms
96,120 KB |
testcase_12 | AC | 2,540 ms
96,512 KB |
testcase_13 | MLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
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 | -- | - |
testcase_41 | -- | - |
ソースコード
import sys input = sys.stdin.readline from heapq import heappop,heappush K,N,M=map(int,input().split()) A=list(map(int,input().split())) B=list(map(int,input().split())) E=[[] for i in range(N)] for i in range(M): u,v,d=map(int,input().split()) u-=1 v-=1 E[u].append((v,d)) E[v].append((u,d)) def dijkestra(fr): Q=[fr] DIS=[1<<61]*N DIS[fr]=0 while Q: x = heappop(Q) dis = x>>20 now = x - (dis<<20) if DIS[now]!=dis: continue for to,cost in E[now]: if DIS[to]>dis+cost: DIS[to]=dis+cost heappush(Q,(DIS[to]<<20)+to) return DIS # 最小費用流 # まず、グラフ作り V=N+N+2 # 頂点数 EDGE=[[] for i in range(V+1)] def add_edge(u,v,k,c): # u→vに容量k, 費用cの辺を張る X=[v,c,k,[]] Y=X[3]=[u,-c,0,X] EDGE[u].append(X) EDGE[v].append(Y) start=V-2 goal=V-1 C=[0]*N for a in A: C[a-1]+=1 for i in range(N): if C[i]==0: continue add_edge(start,i,C[i],0) DIS=dijkestra(i) for j in range(N): add_edge(i,N+j,K,DIS[j]) for i in range(N): add_edge(N+i,goal,B[i],0) #print(EDGE) Flowed_edge=[[] for i in range(V)] BACK=[-1]*(V) P=[0]*(V) # ポテンシャル LA=0 # 最終的な答え for fl in range(K): ANS=[1<<62]*V Q=[start] # 一次元化している。(time<<20)+node ANS[start]=0 while Q: # ここはダイクストラ x = heappop(Q) time = x>>20 fr = x - (time<<20) if time != ANS[fr]: continue for to,cost,vol,f_edge in EDGE[fr]: if vol>0 and ANS[to]>ANS[fr]+cost+P[fr]-P[to]:# ポテンシャルによりコストを調整 ANS[to]=ANS[fr]+cost+P[fr]-P[to] BACK[to]=fr Flowed_edge[to]=f_edge heappush(Q,((ANS[to])<<20)+to) LA+=ANS[goal]+P[goal] P=[P[i]+ANS[i] for i in range(V)] # ポテンシャルを調整 NOW=goal while NOW!=start: f_edge=Flowed_edge[NOW] f_edge[3][2]-=1 # 流した分の容量を削る f_edge[2]+=1 # 逆向きに+1する NOW=BACK[NOW] print(LA)