Codeforces 272E Dima and Horses【玄学暴力】

面对一个图论问题,如何将N个点(每点度数≤3)合理分配至两组,确保各组内每个点至多仅与一个点相连。通过调整节点所属组别直至满足条件,提供了一种有效解决方案。

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

E. Dima and Horses
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Dima came to the horse land. There are n horses living in the land. Each horse in the horse land has several enemies (enmity is a symmetric relationship). The horse land isn't very hostile, so the number of enemies of each horse is at most 3.

Right now the horse land is going through an election campaign. So the horses trusted Dima to split them into two parts. At that the horses want the following condition to hold: a horse shouldn't have more than one enemy in its party.

Help Dima split the horses into parties. Note that one of the parties can turn out to be empty.

Input

The first line contains two integers n, m  — the number of horses in the horse land and the number of enemy pairs.

Next m lines define the enemy pairs. The i-th line contains integers ai, bi (1 ≤ ai, bi ≤ nai ≠ bi), which mean that horse ai is the enemy of horse bi.

Consider the horses indexed in some way from 1 to n. It is guaranteed that each horse has at most three enemies. No pair of enemies occurs more than once in the input.

Output

Print a line, consisting of n characters: the i-th character of the line must equal "0", if the horse number i needs to go to the first party, otherwise this character should equal "1".

If there isn't a way to divide the horses as required, print -1.

Examples
input
3 3
1 2
3 2
3 1
output
100
input
2 1
2 1
output
00
input
10 6
1 2
1 3
1 4
2 3
2 4
3 4
output
0110000000

题目大意:


 给出一个图,包含N个点和M条无向边,保证每个点的度<=3,现在让我们将这N个点分到两个集合中,使得集合中每个点最多和一个点有边相连,求一种可行方案,如果不存在,输出-1

思路:


不难想到,因为他保证了每个点的度数 <=3,那么我们能够肯定给出一个图它一定有解。


看了其他同学的Ac代码,似乎都是暴力去过的。

具体时间复杂度并不会证明,但是可以估计一下,大概500+次肯定能够找到一个合法解。方法如下:

①首先置flag=0;

②然后从1到n遍历,如果其相连边的颜色和当前点颜色相同的个数大于了1,那么将当前点颜色置反,然后flag=1

③如果flag==1回到步骤①,否则结束,找到一个可行解。


Ac代码:

#include<stdio.h>
#include<string.h>
#include<vector>
using namespace std;
vector<int>mp[450000];
int color[450000];
int main()
{
    int n,m;
    while(~scanf("%d%d",&n,&m))
    {
        for(int i=1;i<=n;i++)mp[i].clear();
        memset(color,0,sizeof(color));

        for(int i=1;i<=m;i++)
        {
            int x,y;
            scanf("%d%d",&x,&y);
            mp[x].push_back(y);
            mp[y].push_back(x);
        }
        int flag=1;
        while(flag)
        {
            flag=0;
            for(int i=1;i<=n;i++)
            {
                int cnt=0;
                for(int j=0;j<mp[i].size();j++)
                {
                    int v=mp[i][j];
                    if(color[v]==color[i])cnt++;
                }
                if(cnt>=2)flag=1,color[i]=1-color[i];
            }
        }
        for(int i=1;i<=n;i++)printf("%d",color[i]);
        printf("\n");
    }
}











内容概要:《中文大模型基准测评2025年上半年报告》由SuperCLUE团队发布,详细评估了2025年上半年中文大模型的发展状况。报告涵盖了大模型的关键进展、国内外大模型全景图及差距、专项测评基准介绍等。通过SuperCLUE基准,对45个国内外代表性大模型进行了六大任务(数学推理、科学推理、代码生成、智能体Agent、精确指令遵循、幻觉控制)的综合测评。结果显示,海外模型如o3、o4-mini(high)在推理任务上表现突出,而国内模型如Doubao-Seed-1.6-thinking-250715在智能体Agent和幻觉控制任务上表现出色。此外,报告还分析了模型性价比、效能区间分布,并对代表性模型如Doubao-Seed-1.6-thinking-250715、DeepSeek-R1-0528、GLM-4.5等进行了详细介绍。整体来看,国内大模型在特定任务上已接近国际顶尖水平,但在综合推理能力上仍有提升空间。 适用人群:对大模型技术感兴趣的科研人员、工程师、产品经理及投资者。 使用场景及目标:①了解2025年上半年中文大模型的发展现状与趋势;②评估国内外大模型在不同任务上的表现差异;③为技术选型和性能优化提供参考依据。 其他说明:报告提供了详细的测评方法、评分标准及结果分析,确保评估的科学性和公正性。此外,SuperCLUE团队还发布了多个专项测评基准,涵盖多模态、文本、推理等多个领域,为业界提供全面的测评服务。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值