码迷,mamicode.com
首页 > 其他好文 > 详细

HDU Bombing (STL multiset+map)

时间:2014-05-13 15:13:07      阅读:253      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   code   c   int   


题意:给你 n 个坐标(x,y),m 个询问(c,d)


c==0,求出x==d有多少个,并删除这些点;

c==1,求出y==d有多少个,并删除这些点。


map+multiset的多重映射


#include<cstdio>
#include<stdlib.h>
#include<string.h>
#include<string>
#include<map>
#include<cmath>
#include<iostream>
#include <queue>
#include <stack>
#include<algorithm>
#include<set>
using namespace std;
#define inf 1e8
#define eps 1e-8
#define ll __int64
#define maxn 100001
#define mol 100007

map<int,multiset<int> > X,Y;
int main()
{
	int n,m;
	while(scanf("%d%d",&n,&m)&&n&&m)
	{
		int x,y,c,d;
		X.clear();
		Y.clear();
		//multiset<int>::iterator it;
		while(n--)
		{
			scanf("%d%d",&x,&y);
			X[x].insert(y);
			Y[y].insert(x);
		}
		while(m--)
		{
			scanf("%d%d",&c,&d);
			if(c==0)
			{
				multiset<int>::iterator it;
				printf("%d\n",X[d].size());
				for(it=X[d].begin();it!=X[d].end();it++)//删除x==d的y个数
					Y[*it].erase(d);
				X[d].clear();
			}
			else 
			{
				multiset<int>::iterator it;
				printf("%d\n",Y[d].size());
				for(it=Y[d].begin();it!=Y[d].end();it++)//删除y==d的x个数
					X[*it].erase(d);
				Y[d].clear();
			}
		}
		printf("\n");
	}
	return 0;
}


HDU Bombing (STL multiset+map),布布扣,bubuko.com

HDU Bombing (STL multiset+map)

标签:style   blog   class   code   c   int   

原文地址:http://blog.csdn.net/u012861385/article/details/25650025

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!