牛客国庆day 6 A
题目链接 : https://ac.nowcoder.com/acm/contest/206/A
这个题去年有幸去秦皇岛参加集训,见过这道题,当时特别菜还不会网络流,现在学了一点发现这个网络流还是比较简单的。
首先题意要求价值根据蜡烛数量有变化,因为数据不大,我们可以每个点多联几条变,写成第一区域连接汇点
区域到汇点的流量为1,费用为1,3,5,7.。。。。,因为从小到大加和,和正好为x的平方,所以的边流量都为1,因为只可以走一次,最后从原点到汇点跑个网络流就可以了
AC代码 :
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<algorithm>
#include<iostream>
#include<math.h>
#include<vector>
#include<queue>
using namespace std;
#define INT_MAX 0x73f3f3f
typedef struct w_w{
int eend;
int weight;
int liu;
int next;
}miao;
miao x[];
int head[];
int cnt;
int money[];
int bian[];
int dian[];
int vis[];
queue<int> q1;
int spfa(int s,int e){
memset(bian,-,sizeof(bian));
memset(dian,-,sizeof(dian));
for(int i=;i<=;i++){
money[i]=INT_MAX;
}
money[e]=INT_MAX;
while(q1.size()) q1.pop();
q1.push(s);
money[s]=;
while(q1.size()){
int dang=q1.front();
//printf("%d\n",dang);
q1.pop();
vis[dang]=;
for(int i=head[dang];i!=-;i=x[i].next){
int to=x[i].eend;
int w=x[i].weight;
if(x[i].liu>&&money[dang]+w<money[to]){
money[to]=money[dang]+w;
if(vis[to]==) q1.push(to);
vis[to]=;
bian[to]=i;
dian[to]=dang;
//printf("%d %d %d\n",dang,i,to);
//system("pause");
}
}
}
if(money[e]!=INT_MAX) return ;
else return ;
}
void add(int s,int e,int l,int w){
x[cnt].eend=e;
x[cnt].weight=w;
x[cnt].liu=l;
x[cnt].next=head[s];
head[s]=cnt++;
}
int main()
{
int m,n;
scanf("%d %d",&m,&n);
memset(head,-,sizeof(head));
cnt=;
int start=;
int eend=;
for(int i=;i<=m;i++){
int a,b;
scanf("%d %d",&a,&b);
add(,n+i,,);
add(n+i,,,);
add(n+i,a,,);
add(a,n+i,,);
add(n+i,b,,);
add(b,n+i,,);
}
for(int i=;i<=n;i++){
for(int j=;j<n+;j++){
add(i,eend,,*j+);
add(eend,i,,-(*j+));
}
}
int sum=;
while(spfa(start,eend)){
//printf("+++\n");
int minn=INT_MAX;
for(int i=eend;i!=start;i=dian[i]){
int k=bian[i];
//printf("+++%d\n",i);
minn=min(minn,x[k].liu);
}
sum+=minn*money[eend];
for(int i=eend;i!=start;i=dian[i]){
int k=bian[i];
x[k].liu-=minn;
x[k^].liu+=minn;
//printf("%d\n",k);
}
}
printf("%d\n",sum);
return ;
}
牛客国庆day 6 A的更多相关文章
- 牛客国庆集训派对Day6 A Birthday 费用流
牛客国庆集训派对Day6 A Birthday:https://www.nowcoder.com/acm/contest/206/A 题意: 恬恬的生日临近了.宇扬给她准备了一个蛋糕. 正如往常一样, ...
- 2019牛客国庆集训派对day5
2019牛客国庆集训派对day5 I.Strange Prime 题意 \(P=1e10+19\),求\(\sum x[i] mod P = 0\)的方案数,其中\(0 \leq x[i] < ...
- 牛客国庆集训派对Day1 L-New Game!(最短路)
链接:https://www.nowcoder.com/acm/contest/201/L 来源:牛客网 时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C++ 1048576K,其他语言20 ...
- 牛客国庆集训派对Day4 J-寻找复读机
链接:https://www.nowcoder.com/acm/contest/204/J 来源:牛客网 时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C++ 1048576K,其他语言20 ...
- 牛客国庆集训派对Day4 I-连通块计数(思维,组合数学)
链接:https://www.nowcoder.com/acm/contest/204/I 来源:牛客网 时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C++ 1048576K,其他语言20 ...
- 牛客国庆集训派对Day1-C:Utawarerumono(数学)
链接:https://www.nowcoder.com/acm/contest/201/C 来源:牛客网 时间限制:C/C++ 1秒,其他语言2秒 空间限制:C/C++ 1048576K,其他语言20 ...
- 牛客国庆集训派对Day2 Solution
A 矩阵乘法 思路: 1° 牛客机器太快了,暴力能过. #include <bits/stdc++.h> using namespace std; #define N 5000 in ...
- 平衡二叉树 (牛客国庆day2)解锁二叉树打表姿势&&找规律套路
链接:https://www.nowcoder.com/acm/contest/202/F来源:牛客网 平衡二叉树,顾名思义就是一棵“平衡”的二叉树.在这道题中,“平衡”的定义为,对于树中任意一个节点 ...
- 牛客国庆集训day5 B 电音之王 (大数乘模)
链接:https://www.nowcoder.com/acm/contest/205/B来源:牛客网 题目描述 终于活成了自己讨厌的样子. 听说多听电音能加快程序运行的速度. 定义一个数列,告诉你a ...
- 牛客国庆集训day6 B Board (模拟标记思维或找规律或分块???)
链接:https://www.nowcoder.com/acm/contest/206/B来源:牛客网 题目描述 恬恬有一个nx n的数组.她在用这个数组玩游戏: 开始时,数组中每一个元素都是0. 恬 ...
随机推荐
- 关于WampServer一些配置修改
1.解决WAMP mysql中文乱码问题(在mysql的my.ini文件中) 1).找到client字段并添加:default-character-set=utf8 2).找到mysql字段并添加: ...
- Linux 文件锁flock 实现两个进程相互监听存活状态
表头文件 #include<sys/file.h> 定义函数 int flock(int fd,int operation); 函数说明 flock()会依参数operation所指 ...
- [转]显示农历日期的JS
本文转自:http://blog.sina.com.cn/s/blog_47377e77010009xc.html <!DOCTYPE HTML PUBLIC "-//W3C//DTD ...
- [Silverlight]调用外部可执行程序
public void InvokeExternalExecutableApp() { if (Application.Current.HasElevatedPermissions) {using ( ...
- maven实战迷你版记录
1. ~/.m2 文件 默认情况下,该文件夹下放置了 Maven 本地 仓库.m2/repository.所有的 Maven 构件(artifact)都被存储到该仓库中,以方便重用. 默认情况下,~ ...
- 安装Hexo遇到npm的问题
目录:1.安装git.nvm.node.js 2.安装Hexo遇到npm的问题-及解决办法 3.初步安装完成Hexo ============================ 安装git.nvm.no ...
- [转].Net Core上用于代替System.Drawing的类库
本文转自:http://www.tuicool.com/wx/iuaINjy 目前.Net Core上没有System.Drawing这个类库,想要在.Net Core上处理图片得另辟蹊径. 微软给出 ...
- Unity C# 使用JsonUtility读写Json文件
本文原创,转载请注明出处:http://www.cnblogs.com/AdvancePikachu/p/7146731.html 今天,为大家分享一下unity上的Json序列化,应该一说到这个词语 ...
- Errors while uninstall the reporting extensions
"Microsoft.crm.setup.Srsdataconnector UnregisterServer Action操作失败:Requested value 'geo' was not ...
- chrom锚点不能跳转的问题
最近做一调查页,对没有选择的问题做定位和提示,谷歌下定位不能跳转,解决方法: window.location.hash = 锚点: window.location = window.location;