hdu 4022 STL

题意:给你n个敌人的坐标,再给你m个炸弹和爆炸方向,每个炸弹可以炸横排或竖排的敌人,问你每个炸弹能炸死多少个人。

 1 /*
 2 HDU 4022
 3 G++ 1296ms
 4
 5
 6 */
 7
 8
 9 #include<stdio.h>
10 #include<iostream>
11 #include<set>
12 #include<map>
13 #include<algorithm>
14 using namespace std;
15
16 // 建立一个 map,从 int 到 一个 multiset 容器的映射
17 typedef map<int,multiset<int> > line;// 两个>间一定要加个空格
18 map<int,multiset<int> >mx;//定义x坐标对应的map
19 map<int,multiset<int> >my;//定义y坐标对应的map
20
21 int bomb(line &x,line &y,int pos)
22 {
23     int ret=x[pos].size();
24     multiset<int>::iterator it;//这个学习下
25     for(it=x[pos].begin();it!=x[pos].end();it++)
26        y[*it].erase(pos);//multiset 去除一个元素
27     x[pos].clear();//清空multiset
28     return ret;
29 }
30 int main()
31 {
32     int n,m;
33     int c,d;
34     int tx,ty;
35     while(scanf("%d%d",&n,&m)!=EOF)
36     {
37         if(n==0&&m==0)break;
38         mx.clear();
39         my.clear();
40         for(int i=0;i<n;i++)
41         {
42             scanf("%d%d",&tx,&ty);
43             mx[tx].insert(ty);
44             my[ty].insert(tx);
45         }
46         for(int i=0;i<m;i++)
47         {
48             scanf("%d%d",&c,&d);
49             int ans;
50             if(c==0) ans=bomb(mx,my,d);
51             else ans=bomb(my,mx,d);
52             printf("%d\n",ans);
53         }
54         printf("\n");
55     }
56     return 0;
57 }
时间: 2024-10-27 18:51:35

hdu 4022 STL的相关文章

HDU 4022 stl multiset

orz kss太腻害了. 一.set和multiset基础 set和multiset会根据特定的排序准则,自动将元素进行排序.不同的是后者允许元素重复而前者不允许. 需要包含头文件: #include <set> set和multiset都是定义在std空间里的类模板: 二.set和multiset的功能 和所有关联式容器类似,通常使用平衡二叉树完成.事实上,set和multiset通常以红黑树实作而成. 自动排序的优点是使得搜寻元素时具有良好的性能,具有对数时间复杂度.但是造成的一个缺点就是

HDU 4022 Bombing STL 模拟题

手动模拟.. #include<stdio.h> #include<iostream> #include<algorithm> #include<vector> #include<cmath> #include<queue> #include<set> #include<map> using namespace std; #define N 10100 #define inf 1000000010 map<

HDU 4022 Bombing(stl,map,multiset,iterater遍历)

题目 参考了     1     2 #define _CRT_SECURE_NO_WARNINGS //用的是STL中的map 和 multiset 来做的,代码写起来比较简洁,也比较好容易理解. //multiset可以允许重复 //multiset<int>::iterator it; 用来遍历 #include<stdio.h> #include<string.h> #include<algorithm> #include<iostream&g

Bombing HDU - 4022

Bombing HDU - 4022 题意:给出n个目标,m个炸弹,每个炸弹可以炸一行或者一列,问每一个炸弹摧毁了多少目标. 可以用STL做,也可以二分做. 这是kuangbin的代码~ 用STL很简洁,但是慢 1 /* 2 HDU 4022 3 G++ 1296ms 4 5 6 */ 7 8 9 #include<stdio.h> 10 #include<iostream> 11 #include<set> 12 #include<map> 13 #inc

Bombing HDU, 4022(QQ糖的消法)

Bombing From:HDU, 4022 Submit Time Limit: 4000/2000 MS (Java/Others)      Memory Limit: 65768/65768 K (Java/Others) Problem Description It's a cruel war which killed millions of people and ruined series of cities. In order to stop it, let's bomb the

hdu 4941 STL HASH 模拟

http://acm.hdu.edu.cn/showproblem.php?pid=4941 比赛的时候现学的map的find...以前都是用下标做的,但是map用下标查询的话,如果查询的元素不存在,会插入一个新的元素. 贴一个map查找元素找到和找不到的模板 map<pair<int,int>,int>::iterator it=poshash.find(tmppos);//pair<int,int>poshash; int pp; if(it == poshash.

hdu 4941 stl的map&lt;node,int&gt;用法

#include<iostream> #include<cstdio> #include<cstring> #include<map> using namespace std; typedef struct node{ int x,y; bool operator<(const node &b)const { if(x==b.x) return y<b.y; else return x<b.x; } }node; int main(

HDU 4022 Bombing(基本算法-水题)

Bombing Problem Description It's a cruel war which killed millions of people and ruined series of cities. In order to stop it, let's bomb the opponent's base. It seems not to be a hard work in circumstances of street battles, however, you'll be encou

hdu 5676(stl 或 深搜)

学习: 字符串的下一个排列,字符串的大小比较.strcmp; stl: #include<bits/stdc++.h> using namespace std; typedef long long ll; char c[50],b[50]; int main(){ int T; scanf("%d",&T); while(T--){ scanf("%s",b); int len = strlen(b); if(len & 1){ len