結果
問題 | No.1678 Coin Trade (Multiple) |
ユーザー | abc3 |
提出日時 | 2021-09-11 20:55:35 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 759 ms / 5,000 ms |
コード長 | 2,896 bytes |
コンパイル時間 | 2,346 ms |
コンパイル使用メモリ | 214,776 KB |
実行使用メモリ | 15,752 KB |
最終ジャッジ日時 | 2024-06-23 05:47:53 |
合計ジャッジ時間 | 14,865 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | AC | 62 ms
10,112 KB |
testcase_04 | AC | 350 ms
13,376 KB |
testcase_05 | AC | 147 ms
15,148 KB |
testcase_06 | AC | 110 ms
14,364 KB |
testcase_07 | AC | 301 ms
10,852 KB |
testcase_08 | AC | 198 ms
11,436 KB |
testcase_09 | AC | 166 ms
15,220 KB |
testcase_10 | AC | 78 ms
6,992 KB |
testcase_11 | AC | 249 ms
12,932 KB |
testcase_12 | AC | 66 ms
7,268 KB |
testcase_13 | AC | 583 ms
14,600 KB |
testcase_14 | AC | 157 ms
9,880 KB |
testcase_15 | AC | 175 ms
12,820 KB |
testcase_16 | AC | 49 ms
12,564 KB |
testcase_17 | AC | 166 ms
15,408 KB |
testcase_18 | AC | 3 ms
5,376 KB |
testcase_19 | AC | 3 ms
5,376 KB |
testcase_20 | AC | 3 ms
5,376 KB |
testcase_21 | AC | 3 ms
5,376 KB |
testcase_22 | AC | 3 ms
5,376 KB |
testcase_23 | AC | 3 ms
5,376 KB |
testcase_24 | AC | 3 ms
5,376 KB |
testcase_25 | AC | 3 ms
5,376 KB |
testcase_26 | AC | 3 ms
5,376 KB |
testcase_27 | AC | 3 ms
5,376 KB |
testcase_28 | AC | 3 ms
5,376 KB |
testcase_29 | AC | 3 ms
5,376 KB |
testcase_30 | AC | 3 ms
5,376 KB |
testcase_31 | AC | 3 ms
5,376 KB |
testcase_32 | AC | 3 ms
5,376 KB |
testcase_33 | AC | 3 ms
5,376 KB |
testcase_34 | AC | 3 ms
5,376 KB |
testcase_35 | AC | 3 ms
5,376 KB |
testcase_36 | AC | 3 ms
5,376 KB |
testcase_37 | AC | 3 ms
5,376 KB |
testcase_38 | AC | 3 ms
5,376 KB |
testcase_39 | AC | 3 ms
5,376 KB |
testcase_40 | AC | 3 ms
5,376 KB |
testcase_41 | AC | 4 ms
5,376 KB |
testcase_42 | AC | 3 ms
5,376 KB |
testcase_43 | AC | 3 ms
5,376 KB |
testcase_44 | AC | 3 ms
5,376 KB |
testcase_45 | AC | 3 ms
5,376 KB |
testcase_46 | AC | 3 ms
5,376 KB |
testcase_47 | AC | 3 ms
5,376 KB |
testcase_48 | AC | 751 ms
15,640 KB |
testcase_49 | AC | 759 ms
15,492 KB |
testcase_50 | AC | 751 ms
15,640 KB |
testcase_51 | AC | 740 ms
15,648 KB |
testcase_52 | AC | 726 ms
15,476 KB |
testcase_53 | AC | 750 ms
15,656 KB |
testcase_54 | AC | 732 ms
15,636 KB |
testcase_55 | AC | 734 ms
15,752 KB |
testcase_56 | AC | 728 ms
15,628 KB |
testcase_57 | AC | 739 ms
15,648 KB |
testcase_58 | AC | 426 ms
15,528 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #include <math.h> #include <iomanip> #include <cstdint> #include <string> #include <sstream> template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } #define rep(i,n) for (int i = 0; i < (n); ++i) typedef long long ll; typedef unsigned long long ull; using P=pair<ll,ll>; const ll INF=1e18; const int mod=1e9+7; const int MAX_V=50005; struct edge{ ll to,cap,cost,rev; }; ll V; vector<edge>G[MAX_V]; ll h[MAX_V]; ll dist[MAX_V]; ll prevv[MAX_V],preve[MAX_V]; void add_edge(ll from,ll to,ll cap,ll cost){ G[from].push_back((edge){to,cap,cost,(int)G[to].size()}); G[to].push_back((edge){from,0,-cost,(int)G[from].size()-1}); } ll min_cost_flow(int s,int t,ll f){ ll res=0; fill(h,h+V,0); while(f>0){ priority_queue<P,vector<P>,greater<P>>que; fill(dist,dist+V,INF); dist[s]=0; que.push(P(0,s)); while(!que.empty()){ P p=que.top();que.pop(); int v=p.second; if(dist[v]<p.first){continue;} rep(i,G[v].size()){ edge &e=G[v][i]; if(e.cap>0&&dist[e.to]>dist[v]+e.cost+h[v]-h[e.to]){ dist[e.to]=dist[v]+e.cost+h[v]-h[e.to]; prevv[e.to]=v; preve[e.to]=i; que.push(P(dist[e.to],e.to)); } } } if(dist[t]==INF){return -1;} rep(v,V){h[v]+=dist[v];} ll d=f; for(int v=t;v!=s;v=prevv[v]){ d=min(d,G[prevv[v]][preve[v]].cap); } f-=d; res+=d*h[t]; for(int v=t;v!=s;v=prevv[v]){ edge &e=G[prevv[v]][preve[v]]; e.cap-=d; G[v][e.rev].cap+=d; } } return res; } void solve(){ ll k; cin>>V>>k; vector<ll>a(V); vector<vector<int>>b(V); ll mx=1e9; rep(i,V){ int m; cin>>a[i]>>m; b[i].resize(m); rep(j,m){ cin>>b[i][j]; b[i][j]--; } } rep(i,V){ for(auto j:b[i]){ if(a[i]>a[j]){add_edge(j,i,1,a[j]-a[i]+((ll)i-(ll)j)*mx);} } if(i+1<V){add_edge(i,i+1,k,mx);} } cout<<-min_cost_flow(0,V-1,k)+mx*(V-1)*k<<endl; } int main(){ ios_base::sync_with_stdio(false); cin.tie(NULL); solve(); return 0; }