复读数组

2024-03-16 23:48
文章标签 数组 复读

本文主要是介绍复读数组,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

复读数组

题解

我们可以枚举所有区间,再依次枚举所有不含x的区间,将其减去即可。我们可以依次枚举x在整个数组。
设x在这个kn的数组中出现的位置为p_{1},p_{2},...,p_{m}。那么x的每一次相邻的出现之间的所有区间都是满足条件的。设f(x)=\frac{x(x-1)}{2},那么不包含x的区间个数就为f(p_{1}-1)+f(n*k-p_{m})+\sum _{x=1}^{m-1}f(p_{i+1}-p_{i}-1)。我们再枚举n的区间,加上它所重复的即可。

源码

#include<cstdio>
#include<cmath>
#include<cstring>
#include<iostream>
#include<algorithm>
#include<stack>
#include<vector>
#include<queue>
#include<map>
#define MAXN 100005
using namespace std;
typedef long long LL;
const LL mo=1e9+7;
const LL Inv2=5e8+4;
LL n,k,b[MAXN],tot,ans,num;
LL p[MAXN];
bool c[MAXN];
map<LL,LL> mp;
#define gc() getchar()
template<typename _T>
inline void read(_T &x)
{_T f=1;x=0;char s=gc();while(s>'9'||s<'0'){if(s=='-')f=-1;s=gc();}while(s>='0'&&s<='9'){x=(x<<3)+(x<<1)+(s^48);s=gc();}x*=f;
}
LL f(LL x)
{x%=mo;return x*(x+1)%mo*Inv2%mo;
}
int main()
{ read(n);read(k);for(LL i=1;i<=n;i++){read(b[i]);if(!mp[b[i]]) mp[b[i]]=++tot;b[i]=mp[b[i]];}num=f(n*k);ans=num*tot%mo;for(LL i=1;i<=n;i++){if(p[b[i]])ans=(ans-f(i-p[b[i]]-1)*k%mo+mo)%mo;else c[i]=true;p[b[i]]=i;}for(int i=1;i<=n;i++)if(c[i]){ans=(ans-f(i+n-p[b[i]]-1)*(k-1)%mo+mo)%mo;ans=(ans-f(i-1)+mo)%mo;ans=(ans-f(n-p[b[i]])+mo)%mo;}printf("%lld",ans);return 0;
}

谢谢!!!

这篇关于复读数组的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



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

相关文章

JAVA中整型数组、字符串数组、整型数和字符串 的创建与转换的方法

《JAVA中整型数组、字符串数组、整型数和字符串的创建与转换的方法》本文介绍了Java中字符串、字符数组和整型数组的创建方法,以及它们之间的转换方法,还详细讲解了字符串中的一些常用方法,如index... 目录一、字符串、字符数组和整型数组的创建1、字符串的创建方法1.1 通过引用字符数组来创建字符串1.2

vue如何监听对象或者数组某个属性的变化详解

《vue如何监听对象或者数组某个属性的变化详解》这篇文章主要给大家介绍了关于vue如何监听对象或者数组某个属性的变化,在Vue.js中可以通过watch监听属性变化并动态修改其他属性的值,watch通... 目录前言用watch监听深度监听使用计算属性watch和计算属性的区别在vue 3中使用watchE

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

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