Codeforces 638C Road Improvement【思维+Dfs】

本文探讨了一个涉及图论的问题,即如何最有效地安排施工队修复连接多个城市的道路,确保所有道路能在最短时间内修复完毕。

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

C. Road Improvement
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

In Berland there are n cities and n - 1 bidirectional roads. Each road connects some pair of cities, from any city you can get to any other one using only the given roads.

In each city there is exactly one repair brigade. To repair some road, you need two teams based in the cities connected by the road to work simultaneously for one day. Both brigades repair one road for the whole day and cannot take part in repairing other roads on that day. But the repair brigade can do nothing on that day.

Determine the minimum number of days needed to repair all the roads. The brigades cannot change the cities where they initially are.

Input

The first line of the input contains a positive integer n (2 ≤ n ≤ 200 000) — the number of cities in Berland.

Each of the next n - 1 lines contains two numbers uivi, meaning that the i-th road connects city ui and city vi (1 ≤ ui, vi ≤ nui ≠ vi).

Output

First print number k — the minimum number of days needed to repair all the roads in Berland.

In next k lines print the description of the roads that should be repaired on each of the k days. On the i-th line print first number di — the number of roads that should be repaired on the i-th day, and then di space-separated integers — the numbers of the roads that should be repaired on the i-th day. The roads are numbered according to the order in the input, starting from one.

If there are multiple variants, you can print any of them.

Examples
input
4
1 2
3 4
3 2
output
2
2 2 1
1 3
input
6
3 4
5 4
3 2
1 3
4 6
output
3
1 1 
2 2 3 
2 4 5 
Note

In the first sample you can repair all the roads in two days, for example, if you repair roads 1 and 2 on the first day and road 3 — on the second day.







题目大意:

给出N个点的一棵树,每个点现在都有一个施工队,如果重新修建一条边需要一条边两侧的施工队同时工作才行。
现在问最少多少天,能够使得所有边都重建完成;

思路:

Dfs一遍即可,对于一个点来讲,其往下走的时候,每条边的工作天数都肯定不同。
再维护一个天数,即父亲点和当前点修建这条边的天数编号x,对应这个当前点和其儿子节点之间的修建工作,我们再从第一天开始分配工作,如果遇到了和x编号相同的时候,我们天数++即可。

具体参考代码。

Ac代码:

#include<stdio.h>
#include<string.h>
#include<map>
#include<vector>
using namespace std;
vector<int>mp[250000],ans[250000];
int output;
map<pair<int,int>,int>s;
void Dfs(int u,int from,int prenum)
{
    int day=0;
    for(int i=0;i<mp[u].size();i++)
    {
        int v=mp[u][i];
        if(v==from)continue;
        day++;if(prenum==day)day++;
        ans[day].push_back(s[make_pair(u,v)]);
        Dfs(v,u,day);
    }
    output=max(output,day);
}
int main()
{
    int n;
    while(~scanf("%d",&n))
    {
        s.clear();
        output=0;
        for(int i=1;i<=n;i++)mp[i].clear(),ans[i].clear();
        for(int i=1;i<=n-1;i++)
        {
            int x,y;scanf("%d%d",&x,&y);
            mp[x].push_back(y);
            mp[y].push_back(x);
            s[make_pair(x,y)]=s[make_pair(y,x)]=i;
        }
        Dfs(1,-1,0);
        printf("%d\n",output);
        for(int i=1;i<=output;i++)
        {
            printf("%d ",ans[i].size());
            for(int j=0;j<ans[i].size();j++)
            {
                int v=ans[i][j];
                printf("%d ",v);
            }
            printf("\n");
        }
    }
}








当前提供的引用内容并未提及关于Codeforces比赛M1的具体时间安排[^1]。然而,通常情况下,Codeforces的比赛时间会在其官方网站上提前公布,并提供基于不同时区的转换工具以便参赛者了解具体开赛时刻。 对于Codeforces上的赛事而言,如果一场名为M1的比赛被计划举行,则它的原始时间一般按照UTC(协调世界时)设定。为了得知该场比赛在UTC+8时区的确切开始时间,可以遵循以下逻辑: - 前往Codeforces官网并定位至对应比赛页面。 - 查看比赛所标注的标准UTC起始时间。 - 将此标准时间加上8小时来获取对应的北京时间(即UTC+8)。 由于目前缺乏具体的官方公告链接或者确切日期作为依据,无法直接给出Codeforces M1比赛于UTC+8下的实际发生时段。建议定期访问Codeforces平台查看最新动态更新以及确认最终版程表信息。 ```python from datetime import timedelta, datetime def convert_utc_to_bj(utc_time_str): utc_format = "%Y-%m-%dT%H:%M:%SZ" bj_offset = timedelta(hours=8) try: # 解析UTC时间为datetime对象 utc_datetime = datetime.strptime(utc_time_str, utc_format) # 转换为北京时区时间 beijing_time = utc_datetime + bj_offset return beijing_time.strftime("%Y-%m-%d %H:%M:%S") except ValueError as e: return f"错误:{e}" # 示例输入假设某场Codeforces比赛定于特定UTC时间 example_utc_start = "2024-12-05T17:35:00Z" converted_time = convert_utc_to_bj(example_utc_start) print(f"Codeforces比赛在北京时间下将是:{converted_time}") ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值