map 数组里放 pair 或 结构体

放 pair

#include<bits/stdc++.h>
using namespace std;

typedef pair<int,int>TL;
map<TL,int>s;

int main(){
	TL a;
	a.first = 1,a.second = 2;
	s[a] = 1;
	cout << s[a];
}


放结构体

题目链接:点击打开链接

#include<bits/stdc++.h>
using namespace std;

struct  Test  
{  
    long long x;  
    long long y;
	//long long z;//三个元素
    bool operator < (const Test &o) const  
    {  
        return x < o.x || y < o.y ;// 在分号前加 : || z < o.z
    }  
}s;

int x[100005],y[100005];
map<Test,long long>a;

int main(){
	long long n,x1,y1,x2,y2;
	cin >> n;
	for(int i = 1;i <= n;i++){
		cin >> x1 >> y1 >> x2 >> y2;
		s.x = x2 - x1;
		s.y = y2 - y1;
		x[i] = s.x;
		y[i] = s.y;
		a[s]++;
	}
	int ans = -1,xx,yy;
	for(int i = 1;i <= n;i++){
		s.x = x[i],s.y = y[i];
		if(a[s] > ans){
			xx = x[i];
			yy = y[i];
			ans = a[s];
		}
	}
	s.x = xx,s.y = yy;
	if(a[s] >= n / 2) cout << xx << ' ' << yy;
	else cout << xx << ' ' << yy;
}



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值