30 Jul 2012

ACM NYOJ8 排序


NYOJ 8 一种排序题目: http://acm.nyist.net/JudgeOnline/problem.php?pid=8

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

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

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

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

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


输入
第一行有一个整数 0<n<10000,表示接下来有n组测试数据;
每一组第一行有一个整数 0<m<1000,表示有m个长方形;
接下来的m行,每一行有三个数 ,第一个数表示长方形的编号,

第二个和第三个数值大的表示长,数值小的表示宽,相等
说明这是一个正方形(数据约定长宽与编号都小于10000);
输出
顺序输出每组数据的所有符合条件的长方形的 编号 长 宽

------------------------
看到排序,第一反应就是map,key自动sort的特性让写程序方便了不少.
要online submit需要注释掉程序第一句标准输入重定向语句.

#include <iostream>
#include <map>
#include <fstream>
#include <sstream>
using namespace std;

int main()
{
    ifstream cin("data.txt");
    int n,m,i;
    cin >> n;
    int a,b,c;
    map <int,map <int,map <int,int> > > nums;
    map <int,map <int,map <int,int> > >::iterator it1;
    map <int,map <int,int> >::iterator it2;
    map <int,int>::iterator it3;
    while (n-->0)
    {
        cin >> m;
        for (i=0;i<m;i++)
        {
            cin >> a >> b >> c;
            if (b<c)
            {
                nums[a][c][b] = 1;
            }
            else
            {
                nums[a][b][c] = 1;
            }
        }
        for (it1=nums.begin();it1!=nums.end();it1++)
        {
            for (it2=(*it1).second.begin();it2!=(*it1).second.end();it2++)
            {
                for (it3=(*it2).second.begin();it3!=(*it2).second.end();it3++)
                    cout << (*it1).first << " " << (*it2).first << " " << (*it3).first << endl;
            }
        }

        nums.clear();
    }
    return 0;
}

No comments :

Post a Comment