• M


    跟N题是一样的,不过会爆栈,有两种解决办法,第一种加
    #pragma comment(linker, "/STACK:102400000,102400000")
    这一行代码,不过只能用c++提交,第二种自己写个栈
    /////////////////////////////////////
    #pragma comment(linker, "/STACK:102400000,102400000")
    #include<iostream>
    #include<algorithm>
    #include<stdio.h>
    #include<math.h>
    #include<string.h>
    #include<queue>
    using namespace std;

    const int maxn = 100005;

    int f[maxn], use[maxn];

    void Init()
    {
        for(int i=0; i<maxn; i++)
            f[i] = i, use[i] = 0;
    }
    int Find(int x)
    {
        if(f[x] != x)
            f[x] = Find(f[x]);
        return f[x];
    }

    int main()
    {
        int u, v, ok=1;

        Init();
        while(scanf("%d%d", &u, &v), u!= -1 || v!=-1)
        {
            if(u+v == 0)
            {
                int sum = 0;

                for(int i=0; i<maxn; i++)
                {
                    if(use[i] == 1 && f[i] == i)
                        sum++;
                }

                if(ok && sum < 2)printf("Yes ");
                else printf("No ");

                ok = 1;
                Init();
            }
            else
            {
                use[u] = use[v] = 1;
                
                u = Find(u);
                v = Find(v);
                
                if(u != v)
                    f[u] = v;
                else ok = 0;
            }
        }

        return 0;

    } 

  • 相关阅读:
    Blazor server VS Blazor WebAssembly
    DataTable 差集Except、交集Intersect、并集Union
    Power BI Anomaly Detection
    Power BI智能叙述
    Configure the Secure Store Service in SharePoint Server
    小批量excel数据导入oracle
    python批量写入oracle
    centos7安装java,配置的环境变量不生效 -bash: java: command not found
    nebula docker三件套组件版本问题
    shell删除指定行
  • 原文地址:https://www.cnblogs.com/liuxin13/p/4670133.html
Copyright © 2020-2023  润新知