hdu5302 Connect the Graph 含spj

Connect the Graph

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)
Total Submission(s): 81    Accepted Submission(s): 26
Special Judge


Problem Description
Once there was a special graph. This graph had  n  vertices and some edges. Each edge was either white or black. There was no edge connecting one vertex and the vertex itself. There was no two edges connecting the same pair of vertices. It is special because the each vertex is connected to at most two black edges and at most two white edges. 

One day, the demon broke this graph by copying all the vertices and in one copy of the graph, the demon only keeps all the black edges, and in the other copy of the graph, the demon keeps all the white edges. Now people only knows there are  w0  vertices which are connected with no white edges,  w1  vertices which are connected with  1  white edges,  w2  vertices which are connected with  2  white edges,  b0  vertices which are connected with no black edges,  b1  vertices which are connected with  1  black edges and  b2  vertices which are connected with  2  black edges.

The precious graph should be fixed to guide people, so some people started to fix it. If multiple initial states satisfy the restriction described above, print any of them.
 

Input
The first line of the input is a single integer  T (T700) , indicating the number of testcases. 

Each of the following  T  lines contains  w0,w1,w2,b0,b1,b2 . It is guaranteed that  1w0,w1,w2,b0,b1,b22000  and  b0+b1+b2=w0+w1+w2

It is also guaranteed that the sum of all the numbers in the input file is less than  300000 .
 

Output
For each testcase, if there is no available solution, print  1 . Otherwise, print  m  in the first line, indicating the total number of edges. Each of the next  m  lines contains three integers  x,y,t , which means there is an edge colored  t  connecting vertices  x  and  y t=0  means this edge white, and  t=1  means this edge is black. Please be aware that this graph has no self-loop and no multiple edges. Please make sure that  1x,yb0+b1+b2 .
 

Sample Input
  
  
2 1 1 1 1 1 1 1 2 2 1 2 2
 

Sample Output
  
  
-1 6 1 5 0 4 5 0 2 4 0 1 4 1 1 3 1 2 3 1


就是一个构造题


#include <iostream>
#include <stdio.h>
using namespace std;

int  main(){
	int T,a1,a2,a3,b1,b2,b3;
	scanf("%d",&T);
	while(T--){
		scanf("%d%d%d%d%d%d",&a1,&a2,&a3,&b1,&b2,&b3);
		int m=a1+a2+a3;
		if(a2%2||b2%2||(a2==0&&a3<=2)||(b2==0&&b3<=2)||(a2+a3*2+b2+b3*2>m*4)||(a2+a3*2+b2+b3*2>m*(m-1))){
			puts("-1");
			continue;
		}
		printf("%d\n",(a2+b2)/2+a3+b3);
		//printf("%d %d %d %d %d %d\n",a1,a2,a3,b1,b2,b3);
		if(a2==0){
			for(int i=1;i<=a3;i++)
				printf("%d %d 0\n",i,(i+1)%a3);
		}
		else {
			for(int i=1;i<=a3;i++)
				printf("%d %d 0\n",i,i+1);
			printf("%d %d 0\n",a3+1,a3+2);
			for(int i=1;i<a2-1;i+=2)
				printf("%d %d 0\n",a3+2+i,a3+3+i);
		}
		if(b2!=0){
			int x=2,y=4;
			for(int i=1;i<=b3;i++){
				printf("%d %d 1\n",x,y);
				x+=2,y+=2;
				if(x>m) x=1;
				if(y>m) y=1;
			}
			for(int i=1;i<b2;i+=2){
				printf("%d %d 1\n",x,y);
				x+=4,y+=4;
				if(x>m+2) x=3;
				if(y>m+2) y=3;
				if(x>m) x=1;
				if(y>m) y=1;
			}
		}
		else{
			int x=2,y=4;
			if(b3==m){
				if(a2!=0){
					
					for(int i=1;i<=b3;i+=1){
						printf("%d %d 1\n");
						x+=2,y+=2;
						if(x>m) x=1;
						if(y>m) y=1;
					}
				}
				else {
					if(a3%2){
					
					for(int i=1;i<=b3;i+=1){
						printf("%d %d 1\n");
						x+=2,y+=2;
						if(x>m) x=1;
						if(y>m) y=1;
					}
					}
					else{
						for(int i=1;i<m-1;i++)
							printf("%d %d 1\n",i,i+2);
						printf("%d %d 1\n",m-1,(m-1)%2);
						
						printf("%d %d 1\n",m,(m)%2);
					}
				}
			}
			else{
				
			for(int i=1;i<=b3;i+=1){
				printf("%d %d 1\n");
				x+=2,y+=2;
				if(x>m) x=3;
				if(y>m) y=3;
			}
			}
	}
	}
}


spj

#include <iostream>
#include <stdio.h>
#include <string.h>
using namespace std;
int a[10000][10];
int c[6001][6001];
int b[10][10];
int main(){
	int n,a1,a2,a3,b1,b2,b3,z,x,y;
	while(~scanf("%d",&n)){
		if(n==-1) continue;
		memset(a,0,sizeof(a));
		memset(b,0,sizeof(b));
		memset(c,0,sizeof(c));
	       scanf("%d%d%d%d%d%d",&a1,&a2,&a3,&b1,&b2,&b3);
       		int flag=0;	
	       for(int i=0;i<n;i++){
			scanf("%d%d%d",&x,&y,&z);
			a[x][z]++;
			a[y][z]++;
			if(c[x][y]) flag=1;
			c[x][y]=1;
			c[y][x]=1;
		}
		for(int i=1;i<=a1+a2+a3;i++){
			b[a[i][0]][0]++;
			b[a[i][1]][1]++;
		}
		if(b[0][0]==a1&&b[1][0]==a2&&b[2][0]==a3
				&&b[0][1]==b1&&b[1][1]==b2&&b[2][1]==b3){
			if(flag) printf("%d %d %d %d %d %d\n",a1,a2,a3,b1,b2,b3);}
		else printf("%d %d %d %d %d %d\n",a1,a2,a3,b1,b2,b3);
	}
}




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值