hdu5372(2015多校7)--Segment Game(树状数组)

2024-08-25 00:38

本文主要是介绍hdu5372(2015多校7)--Segment Game(树状数组),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

题目链接:点击打开链接

题目大意:存在一个横轴,有n此操作,0代表在横轴上新增加一条边,1代表删除1条边,其中0 x代表在从x位置开始增加一条边,当第i次加边时,边的长度为i,1 x代表删除第x次加的边。问每当新加入一条边是,这条边能完整的包含几条边。

为什么当时没做这个题,,,已经泪奔,,,

问的是新加的那条边能覆盖多少条边,统计已加入的边的左端点大于或等于新边左端点的个数x,统计已加入的边的右端点大于新边的右端点的个数y。那么新编能覆盖的边也就是x-y,,,,,

用树状数组分别维护一左端点的个数和右端点的个数。然后计算。因为端点位置比较大,所以先对所有端点离散化一下,然后直接统计。

#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std ;
#define maxn 200010
struct node{int k , s , e ;
}p[maxn] , que[maxn] ;
int n , m , cnt ;
int c[maxn<<1][2] ;
int a[maxn<<1] ;
int search1(int x) {int low = 1 , mid , high = m ;while( low <= high ) {mid = (low + high) / 2 ;if( a[mid] == x ) return mid ;if( a[mid] < x ) low = mid + 1 ;else high = mid - 1 ;}
}
int lowbit(int x) {return x & -x ;
}
void add(int i,int j,int k) {while( i ) {c[i][j] += k ;i -= lowbit(i) ;}
}
int sum(int i,int j) {int ans = 0 ;while( i <= m ) {ans += c[i][j] ;i += lowbit(i) ;}return ans ;
}
int main() {int step = 0 ;int i , j ;while( scanf("%d", &n) != EOF ) {cnt = m = 1 ;for(i = 1 ; i <= n ; i++) {scanf("%d %d", &p[i].k, &p[i].s) ;if( !p[i].k ) {a[m++] = p[i].s ;a[m++] = p[i].e = p[i].s+cnt ;cnt++ ;}}sort(a+1,a+m) ;m = unique(a+1,a+m) - a ;for(i = 1 ; i <= n ; i++) {if( p[i].k ) continue ;p[i].s = search1(p[i].s) ;p[i].e = search1(p[i].e) ;}memset(c,0,sizeof(c)) ;cnt = 1 ;printf("Case #%d:\n", ++step) ;for(i = 1 ; i <= n ; i++) {if( p[i].k ) {add(que[ p[i].s ].s,0,-1 ) ;add(que[ p[i].s ].e,1,-1 ) ;}else{que[cnt++] = p[i] ;printf("%d\n", sum(p[i].s,0) - sum(p[i].e+1,1) ) ;add(p[i].s,0,1) ;add(p[i].e,1,1) ;}}}return 0 ;
}


这篇关于hdu5372(2015多校7)--Segment Game(树状数组)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1104064

相关文章

hdu2241(二分+合并数组)

题意:判断是否存在a+b+c = x,a,b,c分别属于集合A,B,C 如果用暴力会超时,所以这里用到了数组合并,将b,c数组合并成d,d数组存的是b,c数组元素的和,然后对d数组进行二分就可以了 代码如下(附注释): #include<iostream>#include<algorithm>#include<cstring>#include<stack>#include<que

hdu 1166 敌兵布阵(树状数组 or 线段树)

题意是求一个线段的和,在线段上可以进行加减的修改。 树状数组的模板题。 代码: #include <stdio.h>#include <string.h>const int maxn = 50000 + 1;int c[maxn];int n;int lowbit(int x){return x & -x;}void add(int x, int num){while

论文阅读笔记: Segment Anything

文章目录 Segment Anything摘要引言任务模型数据引擎数据集负责任的人工智能 Segment Anything Model图像编码器提示编码器mask解码器解决歧义损失和训练 Segment Anything 论文地址: https://arxiv.org/abs/2304.02643 代码地址:https://github.com/facebookresear

fzu 2275 Game KMP

Problem 2275 Game Time Limit: 1000 mSec    Memory Limit : 262144 KB  Problem Description Alice and Bob is playing a game. Each of them has a number. Alice’s number is A, and Bob’s number i

C语言:柔性数组

数组定义 柔性数组 err int arr[0] = {0}; // ERROR 柔性数组 // 常见struct Test{int len;char arr[1024];} // 柔性数组struct Test{int len;char arr[0];}struct Test *t;t = malloc(sizeof(Test) + 11);strcpy(t->arr,

C 语言基础之数组

文章目录 什么是数组数组变量的声明多维数组 什么是数组 数组,顾名思义,就是一组数。 假如班上有 30 个同学,让你编程统计每个人的分数,求最高分、最低分、平均分等。如果不知道数组,你只能这样写代码: int ZhangSan_score = 95;int LiSi_score = 90;......int LiuDong_score = 100;int Zhou

计算数组的斜率,偏移,R2

模拟Excel中的R2的计算。         public bool fnCheckRear_R2(List<double[]> lRear, int iMinRear, int iMaxRear, ref double dR2)         {             bool bResult = true;             int n = 0;             dou

C# double[] 和Matlab数组MWArray[]转换

C# double[] 转换成MWArray[], 直接赋值就行             MWNumericArray[] ma = new MWNumericArray[4];             double[] dT = new double[] { 0 };             double[] dT1 = new double[] { 0,2 };

PHP7扩展开发之数组处理

前言 这次,我们将演示如何在PHP扩展中如何对数组进行处理。要实现的PHP代码如下: <?phpfunction array_concat ($arr, $prefix) {foreach($arr as $key => $val) {if (isset($prefix[$key]) && is_string($val) && is_string($prefix[$key])) {$arr[

Go 数组赋值问题

package mainimport "fmt"type Student struct {Name stringAge int}func main() {data := make(map[string]*Student)list := []Student{{Name:"a",Age:1},{Name:"b",Age:2},{Name:"c",Age:3},}// 错误 都指向了最后一个v// a