数据结构与算法题目集(中文) - 7-14 电话聊天狂人(25 分)

简介: 数据结构与算法题目集(中文) - 7-14 电话聊天狂人(25 分)

题目链接:点击打开链接


题目大意:

解题思路:hash,自定义hash规则 + 结构体数组 + 结构体中的每个链表。

AC 代码

#include<bits/stdc++.h>
#include<cmath>
#define mem(a,b) memset(a,b,sizeof a);
#define INF 0x3f3f3f3f
using namespace std;
typedef long long ll;
const int maxn=1e5+100;
ll mi_tel,ma_Cnt;
int mergeCnt;
struct node
{
    ll tel;
    int cnt;
    node *next;
}nds[maxn];
void init()
{
    ma_Cnt=0;
    mergeCnt=1;
    mi_tel=LLONG_MAX;
    for(int i=0;i<maxn;i++)
    {
        nds[i].tel=-1;
        nds[i].cnt=0;
        nds[i].next=NULL;
    }
}
node * findTel(ll tel)
{
    node * nd;
    // 自定义hash规则
    // TEL:130 0571 1862
    // -> tel[9] + tel[10] + tel[7] + tel[1] + tel[2]
    // -> 62130
    int idx=0;
    idx+=tel%100;
    idx=idx*10+tel/10000%10;
    idx=idx*100+tel/100000000%100;
//    cout<<"idx = "<<idx<<endl;
    nd=&nds[idx];
    if(nd->tel==-1)
    {
        nd->tel=tel;
        return nd;
    }
    while(nd->tel!=tel)
    {
        if(nd->next==NULL)
        {
            nd->next=(node*)malloc(sizeof(node));
            nd=nd->next;
            nd->next=NULL;
            nd->tel=tel;
            nd->cnt=0;
            break;
        }
        else
            nd=nd->next;
    }
    return nd;
}
void insert(ll tel)
{
    node * nd=findTel(tel);
    nd->cnt++;
    if(nd->cnt>ma_Cnt)
    {
        ma_Cnt++;
        mergeCnt=1;
        mi_tel=tel;
    }
    else if(nd->cnt==ma_Cnt)
    {
        mergeCnt++;
        if(tel<mi_tel) mi_tel=tel;
    }
}
int main()
{
    int n;
    while(~scanf("%d",&n))
    {
        init();
        ll tel1,tel2;
        for(int i=0;i<n;i++)
        {
            scanf("%lld%lld",&tel1,&tel2);
            insert(tel1);
            insert(tel2);
        }
        printf("%lld %d",mi_tel,ma_Cnt);
        if(mergeCnt>1) printf(" %d",mergeCnt);
        puts("");
    }
    return 0;
}
目录
相关文章
|
7月前
|
存储 SQL 算法
LeetCode题目113:多种算法实现 路径总和ll
LeetCode题目113:多种算法实现 路径总和ll
|
3月前
|
存储 C语言
栈和队列题目练习
栈和队列题目练习
28 0
|
5月前
|
算法 Java
LeetCode经典算法题:矩阵中省份数量经典题目+三角形最大周长java多种解法详解
LeetCode经典算法题:矩阵中省份数量经典题目+三角形最大周长java多种解法详解
63 6
|
7月前
|
算法
【经典LeetCode算法题目专栏分类】【第10期】排序问题、股票问题与TOP K问题:翻转对、买卖股票最佳时机、数组中第K个最大/最小元素
【经典LeetCode算法题目专栏分类】【第10期】排序问题、股票问题与TOP K问题:翻转对、买卖股票最佳时机、数组中第K个最大/最小元素
|
7月前
|
人工智能 算法 搜索推荐
蓝桥杯宝藏排序题目算法(冒泡、选择、插入)
以下是内容的摘要: 本文介绍了三种排序算法:冒泡排序、选择排序和插入排序。冒泡排序通过不断交换相邻的逆序元素逐步排序,最坏情况下需要 O(n^2) 次比较。选择排序在每轮中找到剩余部分的最小元素并放到已排序序列的末尾,同样具有 O(n^2) 时间复杂度。插入排序则是将每个元素插入到已排序序列的正确位置,时间复杂度也是 O(n^2),但空间复杂度为 O(1)。
|
7月前
|
算法
【经典LeetCode算法题目专栏分类】【第11期】递归问题:字母大小写全排列、括号生成
【经典LeetCode算法题目专栏分类】【第11期】递归问题:字母大小写全排列、括号生成
|
7月前
|
算法
【经典LeetCode算法题目专栏分类】【第9期】深度优先搜索DFS与并查集:括号生成、岛屿问题、扫雷游戏
【经典LeetCode算法题目专栏分类】【第9期】深度优先搜索DFS与并查集:括号生成、岛屿问题、扫雷游戏
|
7月前
|
算法
【经典LeetCode算法题目专栏分类】【第8期】滑动窗口:最小覆盖子串、字符串排列、找所有字母异位词、 最长无重复子串
【经典LeetCode算法题目专栏分类】【第8期】滑动窗口:最小覆盖子串、字符串排列、找所有字母异位词、 最长无重复子串
|
7月前
|
算法
【经典LeetCode算法题目专栏分类】【第7期】快慢指针与链表
【经典LeetCode算法题目专栏分类】【第7期】快慢指针与链表