zoukankan      html  css  js  c++  java
  • Codeforces Round #306 (Div. 2) D

    D. Regular Bridge
    time limit per test
    2 seconds
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    An undirected graph is called k-regular, if the degrees of all its vertices are equal k. An edge of a connected graph is called a bridge, if after removing it the graph is being split into two connected components.

    Build a connected undirected k-regular graph containing at least one bridge, or else state that such graph doesn't exist.

    Input

    The single line of the input contains integer k (1 ≤ k ≤ 100) — the required degree of the vertices of the regular graph.

    Output

    Print "NO" (without quotes), if such graph doesn't exist.

    Otherwise, print "YES" in the first line and the description of any suitable graph in the next lines.

    The description of the made graph must start with numbers n and m — the number of vertices and edges respectively.

    Each of the next m lines must contain two integers, a and b (1 ≤ a, b ≤ na ≠ b), that mean that there is an edge connecting the vertices a and b. A graph shouldn't contain multiple edges and edges that lead from a vertex to itself. A graph must be connected, the degrees of all vertices of the graph must be equal k. At least one edge of the graph must be a bridge. You can print the edges of the graph in any order. You can print the ends of each edge in any order.

    The constructed graph must contain at most 106 vertices and 106 edges (it is guaranteed that if at least one graph that meets the requirements exists, then there also exists the graph with at most 106 vertices and at most 106 edges).

    Sample test(s)
    input
    1
    output
    YES
    2 1
    1 2
    Note
     
     比赛时竟然在C题卡了一会,操,C题就一个裸的DP,我竟然2B地往字符串去想。然后这D题很容易就想到只构造一条桥,然后点数就是(K+2)*2了,然而我连边时竟然连错了,SHIT,四题就这样溜了。
     
    看过这图之后都会知道怎么做的,两边对称,中间一点是空的。偶数度是无解。
    #include <iostream>
    #include <cstdio>
    #include <cstring>
    #include <vector>
    #include <utility>
    using namespace std;
    
    struct edge{
    	int u,v;
    	edge(){}
    	edge(int uu,int vv){u=uu,v=vv;}
    };
    
    vector<edge>ans;
    
    
    int main(){
    	int k;
    	while(scanf("%d",&k)!=EOF){
    		if(k%2==0){
    			puts("NO");
    		}
    		else{
    			if(k==1){
    				puts("YES");
    				printf("%d %d
    ",2,1);
    				printf("%d %d
    ",1,2);
    				continue;
    			}
    			ans.clear();
    			k+=2;
    			int g=k/2;
    			for(int i=0;i<k-1;i++){
    				for(int j=1;j<g;j++){
    					ans.push_back(edge(i,(i+j)%(k-1)));
    					ans.push_back(edge(i+k,(i+j)%(k-1)+k));
    				}
    			}
    			for(int i=1;i<k-1;i++){
    				ans.push_back(edge(i,k-1));
    				ans.push_back(edge(i+k,(k-1)+k));
    			}
    			ans.push_back(edge(0,k));
    			puts("YES");
    			int sz=ans.size();
    			printf("%d %d
    ",k*2,sz);
    			for(int i=0;i<sz;i++){
    				printf("%d %d
    ",ans[i].u+1,ans[i].v+1);
    			}
    			
    		}
    	}
    	return 0;
    }
    

      

  • 相关阅读:
    Silverlight4 打印 生成文件过大解决
    清理 Visual Studio 工具箱 的冗杂控件(第三方控件卸载不完全)
    SQL2005SP4生成数据库脚本视图依赖顺序错误问题
    SQL Server 2005 企业版没有 Management Studio管理工具
    Excel Reader 轻量级
    开发托管ActiveX或第三方程序托管插件时调试问题解决方法
    Entity Framework 从数据库生成模型丢失数据库文档不完美解决方案
    今天写了个很蛋疼的sql语句
    WinForm 内嵌 Office 文档 解决方案测试(非DSOFRAME 纯C#代码,网上独一份)
    生产者、消费者问题之闹钟
  • 原文地址:https://www.cnblogs.com/jie-dcai/p/4560334.html
Copyright © 2011-2022 走看看