HDU - 2492 Ping pong 【树状数组】

探讨在一个虚拟乒乓球街上,如何计算不同玩家间可能的比赛数量,确保裁判的技能等级介于两个参赛者之间,且总行走距离不超过两者房屋间的距离。通过树状数组优化计算过程。

题目传送门

题目描述

N(3<=N<=20000) ping pong players live along a west-east street(consider the street as a line segment). 
Each player has a unique skill rank. To improve their skill rank, they often compete with each other. If two players want to compete, they must choose a referee among other ping pong players and hold the game in the referee's house. For some reason, the contestants can’t choose a referee whose skill rank is higher or lower than both of theirs.
The contestants have to walk to the referee’s house, and because they are lazy, they want to make their total walking distance no more than the distance between their houses. Of course all players live in different houses and the position of their houses are all different. If the referee or any of the two contestants is different, we call two games different. Now is the problem: how many different games can be held in this ping pong street?

Input

The first line of the input contains an integer T(1<=T<=20), indicating the number of test cases, followed by T lines each of which describes a test case.
Every test case consists of N + 1 integers. The first integer is N, the number of players. Then N distinct integers a1, a2 … aN follow, indicating the skill rank of each player, in the order of west to east. (1 <= ai <= 100000, i = 1 … N).

Output

For each test case, output a single line contains an integer, the total number of different games.

Sample Input

1 3 1 2 3

Sample Output

1

解题思路

考虑第 i 个人当裁判的情形。假设a [1] 到a [i-1]中有c [i] 个比a小,那么就有(i-1)- c [i]  比 a [i] 大;同理,假设 a [i+1] 到 a [n] 中有 d [i] 个比 a [i] 小的,那么就有 (n-i)- d[i] 个比 a [i] 大的。根据乘法原理和加法原理,i 当裁判有 c [i] *( (n-i)- d[i] )+((i-1)- c [i] )*d [i] 种比赛。这样问题就转化为求 c[i] 和 d[i]

可以用树状数组求 c[i] 和 d[i] 。

AC代码

#include <iostream>
#include <algorithm>
#include <cstdio>
#include <cstring>
#include <string>
#include <cmath>
#include <queue>
#include <stack>
#include <vector>
#include <map>
#include <set>
using namespace std;
#define io ios::sync_with_stdio(0),cin.tie(0)
#define ms(arr) memset(arr,0,sizeof(arr))
#define mc(a,b) memcpy(a,b,sizeof(b))
#define inf 0x3f3f3f
#define fin freopen("in.txt", "r", stdin)
#define fout freopen("out.txt", "w", stdout)
typedef long long ll;
typedef unsigned long long ULL;
const int mod=1e9+7;
const int N=1e5+7;
int t,n;
ll a[N],c[N],aa[N],bb[N],cc[N],dd[N];
ll lowbit(ll x)
{
    return x&(-x);
}
void add(ll x,ll d){
    while(x<=N){
        c[x]+=d;
        x+=lowbit(x);
    }
}
ll sum(int x)
{
    ll ret=0;
    while(x>0)
    {
        ret+=c[x];
        x-=lowbit(x);
    }
    return ret;
}
int main()
{
//    fin;
    scanf("%d",&t);
    while(t--)
    {
        scanf("%d",&n);
        for(int i=1;i<=n;i++){
            scanf("%lld",&a[i]);
        }
        memset(c,0,sizeof(c));
        for(int i=1;i<=n;i++){
            add(a[i],1);
            aa[i]=sum(a[i]-1);//左边小于a[i]的数的个数
            bb[i]=i-1-aa[i];//左边大于a[i]的数的个数
        }
        memset(c,0,sizeof(c));
        for(int i=n;i>0;i--)
        {
            add(a[i],1);
            cc[i]=sum(a[i]-1);//右边小于a[i]的数的个数
            dd[i]=n-i-cc[i];//右边大于a[i]的数的个数
        }
        ll ans=0;
        for(int i=1;i<=n;i++){
            ans+=aa[i]*dd[i]+bb[i]*cc[i];
        }
        printf("%lld\n",ans);
    }
    return 0;
}

 

内容概要:文章以“智能网页数据标注工具”为例,深入探讨了谷歌浏览器扩展在毕业设计中的实战应用。通过开发具备实体识别、情感分类等功能的浏览器扩展,学生能够融合前端开发、自然语言处理(NLP)、本地存储与模型推理等技术,实现高效的网页数据标注系统。文中详细解析了扩展的技术架构,涵盖Manifest V3配置、内容脚本与Service Worker协作、TensorFlow.js模型在浏览器端的轻量化部署与推理流程,并提供了核心代码实现,包括文本选择、标注工具栏动态生成、高亮显示及模型预测功能。同时展望了多模态标注、主动学习与边缘计算协同等未来发展方向。; 适合人群:具备前端开发基础、熟悉JavaScript和浏览器机制,有一定AI模型应用经验的计算机相关专业本科生或研究生,尤其适合将浏览器扩展与人工智能结合进行毕业设计的学生。; 使用场景及目标:①掌握浏览器扩展开发全流程,理解内容脚本、Service Worker与弹出页的通信机制;②实现在浏览器端运行轻量级AI模型(如NER、情感分析)的技术方案;③构建可用于真实场景的数据标注工具,提升标注效率并探索主动学习、协同标注等智能化功能。; 阅读建议:建议结合代码实例搭建开发环境,逐步实现标注功能并集成本地模型推理。重点关注模型轻量化、内存管理与DOM操作的稳定性,在实践中理解浏览器扩展的安全机制与性能优化策略。
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值