NYOJ 8 一种排序

题目描述:

现在有很多长方形,每一个长方形都有一个编号,这个编号可以重复;还知道这个长方形的宽和长,编号、长、宽都是整数;现在要求按照一下方式排序(默认排序规则都是从小到大);

1.按照编号从小到大排序

2.对于编号相等的长方形,按照长方形的长排序;

3.如果编号和长都相同,按照长方形的宽排序;

4.如果编号、长、宽都相同,就只保留一个长方形用于排序,删除多余的长方形;最后排好序按照指定格式显示所有的长方形;

输入描述:

第一行有一个整数 0

输出描述:

顺序输出每组数据的所有符合条件的长方形的 编号 长 宽

样例输入:

复制

1
8
1 1 1
1 1 1
1 1 2
1 2 1
1 2 2
2 1 1
2 1 2
2 2 1

样例输出:

1 1 1
1 2 1
1 2 2
2 1 1
2 2 1

第一种简单易懂0.0

 

#include 
#include 
#include 
int main()
{
    int n,m;
    int a[1000],b[1000],c[1000];
    scanf("%d",&n);
    while(n--)
    {
    	scanf("%d",&m);
    	for(int i=0;ia[j]  ||(a[i]==a[j]&&b[i]>b[j])||(a[i]==a[j]&&b[i]==b[j]&&c[i]>c[j]) )
				{
					int s=a[i];
					a[i]=a[j];
					a[j]=s;
					
					s=b[i];
					b[i]=b[j];
					b[j]=s;
					
					s=c[i];
					c[i]=c[j];
					c[j]=s;
				}
			}	
		}
		for(int i=0;i

第二种用STL:

#include 
#include 
using namespace std;

struct AC{
	int a;
	int b;
	int c;
}qw[1005];

bool cxy(struct AC qw,struct AC er){
	if(qw.a!= er.a)
		return qw.a >t;
	while(t--){
		cin>>m;
		for(int i=0;i>qw[i].a >>qw[i].b >>qw[i].c ;
			if(qw[i].b

 

你可能感兴趣的:(NYOJ 8 一种排序)