CF1005F Berland and the Shortest Paths
\(\color{#0066ff}{ 题目描述 }\)
一个无向图(边权为1),输出一下选边的方案使\(\sum d_i\)最小(\(d_i\)为从1到i的最短路)
输出一个方案数和方案(方案数超过k个只需输出k个)
\(\color{#0066ff}{输入格式}\)
第一行n,m,k,为点数,边数和k
接下来m行为无向边(权为1)
\(\color{#0066ff}{输出格式}\)
第一行为方案数(超过k个只输出k个)
接下来是01表示的方案(每条边选或不选)
\(\color{#0066ff}{输入样例}\)
4 4 3
1 2
2 3
1 4
4 3
4 6 3
1 2
2 3
1 4
4 3
2 4
1 3
5 6 2
1 2
1 3
2 4
2 5
3 4
3 5
\(\color{#0066ff}{输出样例}\)
2
1110
1011
1
101001
2
111100
110110
\(\color{#0066ff}{数据范围与提示}\)
\(n\leq 2*10^5, n-1\leq m \leq 2*10^5, 1 \leq k \leq 2*10^5, m*k\leq 10^6\)
\(\color{#0066ff}{ 题解 }\)
显然这题要求的是最短路图的生成树方案
先找出最短路图,根据dis(到1距离)分层
然后从2开始每个点都有向上连边的方案,统计一下
\(O(m*k)\)输出方案(搜索,枚举)
#include<bits/stdc++.h>
#define LL long long
LL in() {
char ch; LL x = 0, f = 1;
while(!isdigit(ch = getchar()))(ch == '-') && (f = -f);
for(x = ch ^ 48; isdigit(ch = getchar()); x = (x << 1) + (x << 3) + (ch ^ 48));
return x * f;
}
LL n, m, k;
const int maxn = 2e5 + 100;
struct node {
int to, id;
node *nxt;
node(int to = 0, int id = 0, node *nxt = NULL): to(to), id(id), nxt(nxt) {}
void *operator new(size_t) {
static node *S = NULL, *T = NULL;
return (S == T) && (T = (S = new node[1024]) + 1024), S++;
}
};
using std::pair;
using std::make_pair;
std::priority_queue<pair<int, int>, std::vector<pair<int, int> >, std::greater<pair<int, int> > > q;
std::queue<int> v;
int cnt[maxn], dis[maxn], du[maxn];
bool vis[maxn];
node *head[maxn], *h[maxn];
void add(int from, int to, int id, node **hh) {
hh[from] = new node(to, id, hh[from]);
}
void dij() {
for(int i = 1; i <= n; i++) dis[i] = maxn;
q.push(make_pair(dis[1] = 0, 1));
while(!q.empty()) {
int tp = q.top().second; q.pop();
if(vis[tp]) continue;
vis[tp] = true;
for(node *i = head[tp]; i; i = i->nxt)
if(dis[i->to] > dis[tp] + 1)
q.push(make_pair(dis[i->to] = dis[tp] + 1, i->to));
}
}
void toposort() {
LL tot = 1;
for(int i = 2; i <= n; i++) {
tot *= du[i];
if(tot >= k) break;
}
k = std::min(tot, k);
printf("%lld\n", k);
}
void dfs(int d) {
if(!k) return;
if(d == n + 1) {
for(int i = 1; i <= m; i++) printf("%d", vis[i]);
puts("");
k--;
return;
}
for(node *i = h[d]; i; i = i->nxt) {
vis[i->id] = true;
dfs(d + 1);
vis[i->id] = false;
if(!k) return;
}
}
int main() {
n = in(), m = in(), k = in();
int x, y;
for(int i = 1; i <= m; i++) {
x = in(), y = in();
add(x, y, i, head);
add(y, x, i, head);
}
dij();
for(int i = 1; i <= n; i++)
for(node *j = head[i]; j; j = j->nxt)
if(dis[j->to] == dis[i] + 1)
add(j->to, i, j->id, h), du[j->to]++;
toposort();
for(int i = 1; i <= m; i++) vis[i] = 0;
dfs(2);
return 0;
}
CF1005F Berland and the Shortest Paths的更多相关文章
- CF1005F Berland and the Shortest Paths (树上构造最短路树)
题目大意:给你一个边权为$1$的无向图,构造出所有$1$为根的最短路树并输出 性质:单源最短路树上每个点到根的路径 ,一定是这个点到根的最短路之一 边权为$1$,$bfs$出单源最短路,然后构建最短路 ...
- CF1005F Berland and the Shortest Paths 最短路树计数
问题描述 LG-CF1005F 题解 由题面显然可得,所求即最短路树. 所以跑出最短路树,计数,输出方案即可. \(\mathrm{Code}\) #include<bits/stdc++.h& ...
- Codeforces 1005 F - Berland and the Shortest Paths
F - Berland and the Shortest Paths 思路: bfs+dfs 首先,bfs找出1到其他点的最短路径大小dis[i] 然后对于2...n中的每个节点u,找到它所能改变的所 ...
- Codeforces Round #496 (Div. 3) F - Berland and the Shortest Paths
F - Berland and the Shortest Paths 思路:还是很好想的,处理出来最短路径图,然后搜k个就好啦. #include<bits/stdc++.h> #defi ...
- 【例题收藏】◇例题·II◇ Berland and the Shortest Paths
◇例题·II◇ Berland and the Shortest Paths 题目来源:Codeforce 1005F +传送门+ ◆ 简单题意 给定一个n个点.m条边的无向图.保证图是连通的,且m≥ ...
- [CF1005F]Berland and the Shortest Paths_最短路树_堆优化dij
Berland and the Shortest Paths 题目链接:https://www.codeforces.com/contest/1005/problem/F 数据范围:略. 题解: 太鬼 ...
- [Codeforces 1005F]Berland and the Shortest Paths(最短路树+dfs)
[Codeforces 1005F]Berland and the Shortest Paths(最短路树+dfs) 题面 题意:给你一个无向图,1为起点,求生成树让起点到其他个点的距离最小,距离最小 ...
- Berland and the Shortest Paths CodeForces - 1005F(最短路树)
最短路树就是用bfs走一遍就可以了 d[v] = d[u] + 1 表示v是u的前驱边 然后遍历每个结点 存下它的前驱边 再用dfs遍历每个结点 依次取每个结点的某个前驱边即可 #include &l ...
- Shortest Paths
最短路径 APIs 带权有向图中的最短路径,这节讨论从源点(s)到图中其它点的最短路径(single source). Weighted Directed Edge API 需要新的数据类型来表示带权 ...
随机推荐
- mycat 实践扩容
实践扩容, travelrecord表定义为10个分片,尝试将10个分片中的2个分片转移到第二台MySQL上 1--定义10个分片<table name="travelrecord_t ...
- Oracle 监听莫名死掉
有一台oracle 10g的监听莫名死掉,进行查看 select * from v$version Oracle Database 10g Enterprise Edition Release 10. ...
- DataGridView上下方向键定位
/// <summary> /// DataGridView上下方向键定位 /// </summary> /// <param name="dgv"& ...
- Celery-4.1 用户指南: Signals (信号)
基础 有多种类型的事件可以触发信号,你可以连接到这些信号,使得在他们触发的时候执行操作. 连接到 after_task_publish 信号的示例: from celery.signals impor ...
- How to recover destroyed ZFS storage pools
root@sol11ai:~# zpool status tank pool: tank state: ONLINE scan: resilvered 91K in 0h0m with 0 e ...
- 11-04 SQLserver基础--连接查询、联合查询、索引
一.子查询补充: Exists的用法: select*from haha where exists(select*from bumen where bumen.code=haha.bumen,and ...
- 基于Flask框架的Python web程序的开发实战 <二> 项目组织结构
看到第七章-大型程序的结构,备受打击,搞不清工厂函数.蓝本.单元测试,不理解这些对象/变量怎么传递的,感觉好乱,虽然按照源码都照抄了,还是不理解.... 缓缓先.... 本来网上的Flask的教程就比 ...
- Error: Cannot run program "/home/xxx/android_developer_tools/android-ndk-r8/ndk-build.cmd": Unknown reason
运行OpenCV官方例子 tutorial-2-mixedprocessing 总提示 /home/xxx/android_developer_tools/ 明明在PATH中采用好几种方法都加入了 ...
- memset,memcpy,strcpy的使用与区别
1.memset 原型: extern void *memset(void *buffer, int c, int count); 功能: 把buffer所指内存区域的前count个字节设置成 ...
- POJ 1220 高精度/进制转换
n进制转m进制,虽然知道短除法但是还是不太理解,看了代码理解一些了: 记住这个就好了: for(int k=0;l; ){ for(int i=l ; i>=1 ; i--){ num[i - ...