标签:des style blog color io os for strong 数据
Time Limit: 5000MS | Memory Limit: 10000K | |||
Total Submissions: 7407 | Accepted: 3201 | Special Judge |
Description
未名湖附近共有N个大小湖泊L1, L2, ..., Ln(其中包括未名湖),每个湖泊Li里住着一只青蛙Fi(1 ≤ i ≤ N)。如果湖泊Li和Lj之间有水路相连,则青蛙Fi和Fj互称为邻居。现在已知每只青蛙的邻居数目x1, x2, ..., xn,请你给出每两个湖泊之间的相连关系。
Input
第一行是测试数据的组数T(0 ≤ T ≤ 20)。每组数据包括两行,第一行是整数N(2 < N < 10),第二行是N个整数,x1, x2,..., xn(0 ≤ xi ≤ N)。
Output
对输入的每组测试数据,如果不存在可能的相连关系,输出"NO"。否则输出"YES",并用N×N的矩阵表示湖泊间的相邻关系,即如果湖泊i与湖泊j之间有水路相连,则第i行的第j个数字为1,否则为0。每两个数字之间输出一个空格。如果存在多种可能,只需给出一种符合条件的情形。相邻两组测试数据之间输出一个空行。
Sample Input
3 7 4 3 1 5 4 2 1 6 4 3 1 4 2 0 6 2 3 1 1 2 1
Sample Output
YES 0 1 0 1 1 0 1 1 0 0 1 1 0 0 0 0 0 1 0 0 0 1 1 1 0 1 1 0 1 1 0 1 0 1 0 0 0 0 1 1 0 0 1 0 0 0 0 0 0 NO YES 0 1 0 0 1 0 1 0 0 1 1 0 0 0 0 0 0 1 0 1 0 0 0 0 1 1 0 0 0 0 0 0 1 0 0 0
思路:
总共10个数,暴力一下就行了,每次按从大到小排序,然后第一个最大的数平摊到这个数后面的数上,排序n-1次就行了,如果结果有负数输出NO,否则输出图即可。
代码:
1 #include <cstdio> 2 #include <cstring> 3 #include <algorithm> 4 #include <iostream> 5 #include <vector> 6 #include <queue> 7 #include <cmath> 8 #include <stack> 9 using namespace std; 10 11 struct node{ 12 int e, num; 13 }a[15]; 14 15 bool cmp(node a,node b){ 16 return a.num>b.num; 17 } 18 19 main() 20 { 21 int n; 22 int i, j, k, t; 23 int b[15][15]; 24 cin>>t; 25 while(t--){ 26 scanf("%d",&n); 27 for(i=0;i<n;i++){ 28 scanf("%d",&a[i].num); 29 a[i].e=i; 30 } 31 int ci=0; 32 memset(b,0,sizeof(b)); 33 while(ci<n-1){ 34 ci++; 35 sort(a,a+n,cmp); 36 for(i=1;i<=a[0].num;i++) a[i].num--,b[a[0].e][a[i].e]=b[a[i].e][a[0].e]=1; 37 a[0].num=0; 38 } 39 int f=1; 40 for(i=0;i<n;i++){ 41 if(a[i].num<0){ 42 f=0;break; 43 } 44 } 45 if(!f) printf("NO\n\n"); 46 else { 47 printf("YES\n"); 48 for(i=0;i<n;i++){ 49 printf("%d",b[i][0]); 50 for(j=1;j<n;j++){ 51 printf(" %d",b[i][j]); 52 } 53 cout<<endl; 54 } 55 cout<<endl; 56 } 57 } 58 }
标签:des style blog color io os for strong 数据
原文地址:http://www.cnblogs.com/qq1012662902/p/4006427.html