CodeForces - 330B Road Construction 思维

本文介绍了CodeForces-330B题目的解题思路及实现方法,该题目要求在给定的城市间修路,使得任意两城间的通行路径不超过两条,同时避开特定不可修路段。文章提供了具体的算法实现代码。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

 CodeForces - 330B Road Construction



    A country has n cities. Initially, there is no road in the country. One day, the king decides to construct some roads connecting pairs of cities. Roads can be traversed either way. He wants those roads to be constructed in such a way that it is possible to go from each city to any other city by traversing at most two roads. You are also given m pairs of cities — roads cannot be constructed between these pairs of cities.
    Your task is to construct the minimum number of roads that still satisfy the above conditions. The constraints will guarantee that this is always possible.
Input
    The first line consists of two integers n and m .
    Then m lines follow, each consisting of two integers ai and bi (1 ≤ ai, bi ≤ n, ai ≠ bi), which means that it is not possible to construct a road connecting cities ai and bi. Consider the cities are numbered from 1 to n.
    It is guaranteed that every pair of cities will appear at most once in the input.
Output
    You should print an integer s: the minimum number of roads that should be constructed, in the first line. Then s lines should follow, each consisting of two integers ai and bi (1 ≤ ai, bi ≤ n, ai ≠ bi), which means that a road should be constructed between cities ai and bi.
    If there are several solutions, you may print any of them.
Example
    Input
    4 1
    1 3
    Output
    3
    1 2
    4 2
    2 3

题意:在n个城市间修路,要求任意一个城市到其他任意一个城市之间的路不超过两条,并且有些路是不能修的

思路:开始只往最小生成树和弗洛伊德上想了,训练完听别人讲是简单的思维题,因为任意两个城市之间的路不能超过两条,所以其中有一个点连接着剩下的n-1个点,这个点就从可以与n-1个点都能修路的中任意选一个,修的最小路数就为n-1

#include<stdio.h>
int a[1001];
int main(void){
	int n,m;
	scanf("%d%d",&n,&m);
	for(int i=1;i<=m;i++){
		int u,v;
		scanf("%d%d",&u,&v);
		a[u]=1;
		a[v]=1;
	}
	int mid;
	for(int i=1;i<=n;i++){
		if(!a[i]){
			mid=i;
			break;
		}
	}
	printf("%d\n",n-1);
	for(int i=1;i<=n;i++){
		if(i==mid) continue;
		else{
			printf("%d %d\n",mid,i);
		}
	}
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值