bzoj4873: [Shoi2017]壽司餐廳(網路流)
題目傳送門
神題啊。
解法:
最大權閉合子圖。
不是很會用所以花了一整天的時間來想怎麼構圖。
然後之前做過最大獲利這道題(bzoj1497)
那道題好像更水一點。
從那道題受到了一點點啟發。
那麼很顯然要把每個區間都看成點啊。
那麼按照最大權閉合子圖st連正權點,負權連ed。
每個區間因為包含關係:
d[i][j]包含d[i+1][j],d[i][j-1]。
所以要向這兩個區間連邊。
然後對於每一個d[i][i]向這個壽司的編號連邊,容量為編號。
然後對於每一個編號向ed連邊,容量為m*編號的平方。
這樣才符合題意。。
然後用正權和減去最大流就行了。
程式碼實現:
#include<cstdio>
#include<cstring>
#include<cstdlib>
#include<iostream>
#include<algorithm>
#include<cmath>
#include<queue>
using namespace std;
struct node {int x,y,c,next,other;}a[1110000];int len,last[110000];
void ins(int x,int y,int c) {
int k1,k2;
len++;k1=len;a[len].x=x;a[len].y=y;a[len].c=c;a[len].next=last[x];last[x]=len;
len++;k2=len;a[len].x=y;a[len].y=x;a[len].c=0;a[len].next=last[y];last[y]=len;
a[k1].other=k2;a[k2].other=k1;
}
int head,tail,list[110000],st,ed,h[110000];
bool bt_h() {
memset(h,0,sizeof(h));h[st]=1;
head=1;tail=2;list[1]=st;
while(head!=tail) {
int x=list[head];head++;
for(int k=last[x];k;k=a[k].next) {
int y=a[k].y;
if(h[y]==0&&a[k].c>0) {
h[y]=h[x]+1;list[tail++]=y;
}
}
}
if(h[ed]==0)return false;
return true;
}
int findflow(int x,int f) {
if(x==ed)return f;
int s=0,t;
for(int k=last[x];k;k=a[k].next) {
int y=a[k].y;
if(h[y]==h[x]+1&&a[k].c>0&&s<f) {
t=findflow(y,min(a[k].c,f-s));s+=t;
a[k].c-=t;a[a[k].other].c+=t;
}
}
if(s==0)h[x]=0;
return s;
}
int s[110],d[110][110];const int inf=999999999;int b[1100];
int main() {
int n,m;scanf("%d%d",&n,&m);
st=n*(n+1)/2+n+1;ed=st+1;int sum=0;
len=0;memset(last,0,sizeof(last));int cnt=n;
memset(b,0,sizeof(b));
for(int i=1;i<=n;i++){scanf("%d",&s[i]);
if(b[s[i]]==0)b[s[i]]=++cnt,ins(cnt,ed,s[i]*s[i]*m);
ins(i,ed,s[i]);ins(i,b[s[i]],inf);
}
for(int i=1;i<=n;i++)for(int j=i;j<=n;j++)d[i][j]=(i==j)?i:(++cnt);
for(int i=1;i<=n;i++)for(int j=i;j<=n;j++) {
int c;scanf("%d",&c);
if(c>0)sum+=c,ins(st,d[i][j],c);
else if(c<0)ins(d[i][j],ed,-c);
if(j!=i)ins(d[i][j],d[i+1][j],inf),ins(d[i][j],d[i][j-1],inf);
}
int ans=0;
while(bt_h()==true)ans+=findflow(st,inf);
printf("%d\n",sum-ans);
return 0;
}
相關文章
- 網路流經典模型之一:最大權閉合子圖(壽司餐廳)模型
- High Table:掌上美餐,餐廳網路訂餐應用資料
- 818壽司外賣資料
- JOISC 2016 回転壽司
- 餐廳點餐系統GUI——Java大作業GUIJava
- 程式設計師的餐廳程式設計師
- 目指主題餐廳天花板 《FF14》海德林咖啡餐廳正式開業
- 海底撈智慧餐廳:AI+餐飲的時代已來AI
- 【網路流】網路流基本概念
- 閃信智慧校園餐廳系統
- 如何提高餐廳點菜效率的思考
- 餐廳人流實時監測系統
- P2150 [NOI2015] 壽司晚宴
- 網路流
- MediaPost:超60%的餐館無法進行網路訂餐
- 臺灣大學餐廳神翻譯:雞米花亮了
- 網路流初步
- 餐飲業進入“無人”時代 口碑宣佈開放無人餐廳技術!
- 關於網路流
- 圖論——網路流圖論
- 網路流總結
- 網路流最大流
- 網路流相關
- 網路流-最小割
- 上下界網路流
- 你以為只是“吃雞”餐廳,別人卻有物聯網和雲平臺
- 客戶抱怨椅子,餐廳老闆卻把選單換了
- 程式設計師的精神家園——碼農餐廳(二)程式設計師
- 騰訊:中國網際網路使用者使用網路點餐比例僅為36%
- 回轉壽司你一定吃過!——Android訊息機制(構造)Android
- 回轉壽司你一定吃過!——Android訊息機制(處理)Android
- 回轉壽司你一定吃過!——Android訊息機制(分發)Android
- 網路訂餐向無證黑店“亮紅燈”
- 網路流大雜燴
- 【模板】網路流最大流
- 網路流概念補充
- Restaurant:冠狀病毒致97%的美國餐廳銷售額低迷REST
- 【譯】類比餐廳桌前就餐來解釋前端和後端前端後端