回 帖 发 新 帖 刷新版面

主题:杭电2034题,高手赐教,这样编写为何通不过

#include<iostream>
#include<vector>
using namespace std;

template<class T>
void sort_elem(T first,T last)
{
    T temp,temp1;
    for(temp=first;temp!=last-1;temp++)
    {
        for(temp1=temp;temp1!=last-1;temp1++)
        {
            if(*temp1>*(temp1+1))
            {
              int tmp;
              tmp=*temp1;
              *temp1=*(temp1+1);
              *(temp1+1)=tmp;
            }
        }
    }
}
int main(void)
{
    int n,m;
    while(cin>>n>>m,n!=0 || m!=0)
    {
        if(n>=0 && n<=100 && m>=0 && m<=100)
        {
        vector<int>set1,set2;
        int temp;
        while(n--)
        {            
            cin>>temp;
            set1.push_back(temp);
        }
        while(m--)
        {
            cin>>temp;
            set2.push_back(temp);
        }
        vector<int>::iterator ix1,ix2;
        for(ix1=set1.begin();ix1!=set1.end();)
        {
            for(ix2=set2.begin();ix2!=set2.end();ix2++)
            {
                if(*ix1==*ix2)
                {
                    ix1=set1.erase(ix1);
                    break;
                }
            }
            if(ix2==set2.end())
            {
                ix1++;
            }
        }
        if(!set1.empty())
        {
        sort_elem(set1.begin(),set1.end());
    
        for(ix1=set1.begin();ix1!=set1.end();ix1++)
        {
            cout<<*ix1<<" ";
        }
        cout<<endl;
        }
        else
        {
            cout<<"NULL"<<endl;
        }

    }
    }
    return 0;
}
请高手详细解答

回复列表 (共3个回复)

沙发

为何通不过
------ 鬼知道!只有鬼才知道你说的是编译通不过,运行通不过,还是提交通不过……?

板凳

提交没通过,在visual c++6.0能通过的

3 楼

对应的题目
Problem Description
参加过上个月月赛的同学一定还记得其中的一个最简单的题目,就是{A}+{B},那个题目求的是两个集合的并集,今天我们这个A-B求的是两个集合的差,就是做集合的减法运算。(当然,大家都知道集合的定义,就是同一个集合中不会有两个相同的元素,这里还是提醒大家一下)

呵呵,很简单吧?
 

Input
每组输入数据占1行,每行数据的开始是2个整数n(0<=n<=100)和m(0<=m<=100),分别表示集合A和集合B的元素个数,然后紧跟着n+m个元素,前面n个元素属于集合A,其余的属于集合B. 每个元素为不超出int范围的整数,元素之间有一个空格隔开.
如果n=0并且m=0表示输入的结束,不做处理。
 

Output
针对每组数据输出一行数据,表示A-B的结果,如果结果为空集合,则输出“NULL”,否则从小到大输出结果,为了简化问题,每个元素后面跟一个空格.

 

Sample Input
3 3 1 2 3 1 4 7
3 7 2 5 8 2 3 4 5 6 7 8 
0 0
 

Sample Output
2 3 
NULL

我来回复

您尚未登录,请登录后再回复。点此登录或注册