結果
問題 | No.1288 yuki collection |
ユーザー | beet |
提出日時 | 2020-11-13 21:48:45 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 838 ms / 5,000 ms |
コード長 | 6,047 bytes |
コンパイル時間 | 3,089 ms |
コンパイル使用メモリ | 234,144 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-22 20:42:11 |
合計ジャッジ時間 | 12,598 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 3 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 3 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 3 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 3 ms
6,940 KB |
testcase_13 | AC | 146 ms
6,944 KB |
testcase_14 | AC | 104 ms
6,944 KB |
testcase_15 | AC | 166 ms
6,940 KB |
testcase_16 | AC | 144 ms
6,940 KB |
testcase_17 | AC | 135 ms
6,940 KB |
testcase_18 | AC | 141 ms
6,940 KB |
testcase_19 | AC | 155 ms
6,944 KB |
testcase_20 | AC | 134 ms
6,940 KB |
testcase_21 | AC | 328 ms
6,944 KB |
testcase_22 | AC | 351 ms
6,948 KB |
testcase_23 | AC | 362 ms
6,940 KB |
testcase_24 | AC | 112 ms
6,944 KB |
testcase_25 | AC | 147 ms
6,940 KB |
testcase_26 | AC | 107 ms
6,940 KB |
testcase_27 | AC | 425 ms
6,944 KB |
testcase_28 | AC | 321 ms
6,940 KB |
testcase_29 | AC | 154 ms
6,940 KB |
testcase_30 | AC | 417 ms
6,940 KB |
testcase_31 | AC | 444 ms
6,940 KB |
testcase_32 | AC | 459 ms
6,940 KB |
testcase_33 | AC | 838 ms
6,944 KB |
testcase_34 | AC | 221 ms
6,944 KB |
testcase_35 | AC | 329 ms
6,940 KB |
testcase_36 | AC | 42 ms
6,944 KB |
testcase_37 | AC | 130 ms
6,944 KB |
testcase_38 | AC | 838 ms
6,940 KB |
testcase_39 | AC | 822 ms
6,940 KB |
testcase_40 | AC | 439 ms
6,944 KB |
testcase_41 | AC | 2 ms
6,940 KB |
testcase_42 | AC | 2 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using Int = long long; const char newl = '\n'; template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;} template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;} template<typename T> void drop(const T &x){cout<<x<<endl;exit(0);} template<typename T=int> vector<T> read(size_t n){ vector<T> ts(n); for(size_t i=0;i<n;i++) cin>>ts[i]; return ts; } // O(m^2 \log m \log U) // U: maximum capacity enum Objective{ MINIMIZE = +1, MAXIMIZE = -1, }; template<typename Flow, typename Cost, Objective objective = Objective::MINIMIZE> struct MinCostFlow{ template<typename T> inline void chmin(T &x,T y){x=min(x,y);} struct Edge{ int src,dst; Flow flow,cap; Cost cost; int rev; Edge(int src,int dst,Flow cap,Cost cost,int rev): src(src),dst(dst),flow(0),cap(cap),cost(cost),rev(rev){} Flow residual_cap()const{return cap-flow;} }; struct EdgePtr{ int v,e; EdgePtr(int v,int e):v(v),e(e){} }; int n; vector<vector<Edge>> G; vector<Flow> b; vector<Cost> p; MinCostFlow(int n):n(n),G(n),b(n,0){} EdgePtr add_edge(int src,int dst,Flow lower,Flow upper,Cost cost){ int e=G[src].size(); int r=(src==dst?e+1:G[dst].size()); assert(lower<=upper); G[src].emplace_back(src,dst,+upper,+cost*objective,r); G[dst].emplace_back(dst,src,-lower,-cost*objective,e); return EdgePtr(src,e); } const Edge &get_edge(EdgePtr ep)const{return G[ep.v][ep.e];} void push(Edge &e,Flow amount){ e.flow+=amount; G[e.dst][e.rev].flow-=amount; } void add_supply(int v,Flow amount){b[v]+=amount;} void add_demand(int v,Flow amount){b[v]-=amount;} Cost residual_cost(const Edge &e){ return e.cost+p[e.src]-p[e.dst]; } vector<int> excess_vs,deficit_vs; void saturate_negative(const Flow delta){ for(auto &es:G){ for(auto &e:es){ Flow cap=e.residual_cap(); cap-=cap%delta; if(cap<0 or residual_cost(e)<0){ push(e,cap); b[e.src]-=cap; b[e.dst]+=cap; } } } excess_vs.clear(); deficit_vs.clear(); for(int v=0;v<n;v++){ if(b[v]>0) excess_vs.emplace_back(v); if(b[v]<0) deficit_vs.emplace_back(v); } } const Cost unreachable = std::numeric_limits<Cost>::max(); Cost farthest; vector<Cost> dist; vector<Edge*> parent; struct P{ Cost first; int second; P(Cost first,int second):first(first),second(second){} bool operator<(const P o)const{return first>o.first;} }; priority_queue<P> pq; template<typename Predicate> void eliminate(vector<int> &vs,Predicate predicate){ vs.erase(remove_if(begin(vs),end(vs),predicate),end(vs)); } bool dual(const Flow delta){ eliminate(excess_vs, [&](int v){return b[v]<+delta;}); eliminate(deficit_vs,[&](int v){return b[v]>-delta;}); dist.assign(n,unreachable); for(int v:excess_vs) pq.emplace(dist[v]=0,v); parent.assign(n,nullptr); auto emplace=[&](Edge& e){ if(e.residual_cap()<delta) return; Cost nxt=dist[e.src]+residual_cost(e); if(nxt>=dist[e.dst]) return; pq.emplace(dist[e.dst]=nxt,e.dst); parent[e.dst]=&e; }; farthest=0; int deficit_count=0; while(!pq.empty()){ Cost d=pq.top().first; int v=pq.top().second; pq.pop(); if(dist[v]<d) continue; farthest=d; if(b[v]<=-delta) deficit_count++; if(deficit_count>=(int)deficit_vs.size()) break; for(auto &e:G[v]) emplace(e); } pq=decltype(pq)(); for(int v=0;v<n;v++) p[v]+=min(dist[v],farthest); return deficit_count>0; } void primal(const Flow delta){ for(int t:deficit_vs){ if(dist[t]>farthest) continue; Flow f=-b[t]; int v; for(v=t;parent[v];v=parent[v]->src) chmin(f,parent[v]->residual_cap()); chmin(f,b[v]); f-=f%delta; if(f<=0) continue; for(v=t;parent[v];){ auto &e=*parent[v]; push(e,f); int u=parent[v]->src; if(e.residual_cap()<=0) parent[v]=nullptr; v=u; } b[t]+=f; b[v]-=f; } } template<Flow SCALING_FACTOR=2> bool build(){ p.resize(n); Flow max_flow=1; for(auto t:b) max_flow=max({max_flow,t,-t}); for(auto &es:G) for(auto &e:es) max_flow=max({max_flow,e.residual_cap(),-e.residual_cap()}); Flow delta=1; while(delta<max_flow) delta*=SCALING_FACTOR; for(;delta;delta/=SCALING_FACTOR){ saturate_negative(delta); while(dual(delta)) primal(delta); } return excess_vs.empty() and deficit_vs.empty(); } template<typename T=Cost> T get_cost(){ T res=0; for(auto &es:G) for(auto &e:es) res+=T(e.flow)*T(e.cost)/T(objective); return res/T(2); } template<typename T=Cost> T get_gain(){return get_cost();} vector<Cost> get_potential(){ fill(p.begin(),p.end(),0); for(int i=0;i<n;i++) for(auto &es:G) for(auto &e:es) if(e.residual_cap()>0) chmin(p[e.dst],p[e.src]+e.cost); return p; } }; template<typename Flow, typename Cost> using MaxGainFlow = MinCostFlow<Flow, Cost, Objective::MAXIMIZE>; //INSERT ABOVE HERE signed main(){ cin.tie(0); ios::sync_with_stdio(0); using ll = long long; int n; cin>>n; string s; cin>>s; auto vs=read(n); int S=2*n,T=2*n+1; MaxGainFlow<ll, ll> G(2*n+2); map<char, int> pos; const string yuki = "yuki"; for(char c:yuki) pos[c]=n; for(int i=n-1;i>=0;i--){ char c=s[i]; if(pos[c]<n) G.add_edge(i,pos[c],0,n,0); if(c=='y') G.add_edge(S,i,0,n,0); if(c=='i') G.add_edge(n+i,T,0,n,0); G.add_edge(i,n+i,0,1,vs[i]); for(int j=0;j+1<(int)yuki.size();j++) if(c==yuki[j] and pos[yuki[j+1]]<n) G.add_edge(n+i,pos[yuki[j+1]],0,n,0); pos[c]=i; } G.add_edge(S,T,0,n,0); G.add_supply(S,n); G.add_demand(T,n); G.build(); cout<<G.get_cost()<<newl; return 0; }