题目大意
求每一个数字出现的次数
思路
hash存储,然后排序就可以了
O(nlogn)
#include
#include
using namespace std;
#define empty 0x7fffffff
#define p 5201314
int h[p+1],ans=0,f[p+1];
struct arr
{
long long x1,x2;
};
arr a[p+1];
int cam(arr a,arr b)
{
return a.x1
发布于 2019-04-23 954 次阅读
求每一个数字出现的次数
hash存储,然后排序就可以了
O(nlogn)
#include
#include
using namespace std;
#define empty 0x7fffffff
#define p 5201314
int h[p+1],ans=0,f[p+1];
struct arr
{
long long x1,x2;
};
arr a[p+1];
int cam(arr a,arr b)
{
return a.x1
Comments NOTHING