牛客练习赛7 E 珂朵莉的数列
思路:
树状数组+高精度
离散化不知道哪里写错了,一直wa,最后用二分写的离散化
哪位路过大神可以帮我看看原来的那个离散化错在哪里啊
通过代码:
import java.math.BigInteger;
import java.util.*;
import java.util.Scanner; class node
{
int x;
int id;
}
class cmp implements Comparator<node>
{
public int compare(node A,node B)
{
if(A.x<B.x)return -1;
else if(A.x==B.x)return 0;
else return 1;
}
}
public class Main{
public final static int N=(int)1e6+9;
public static int n;
public static int a[]=new int[N];
public static long b[]=new long[N];
public static long bit[]=new long[N];
public static long sum(int x)
{
long ret=0;
while(x>0)
{
ret+=bit[x];
x-=x&(-x);
}
return ret;
}
public static void add(int x,long a)
{
while(x<=n)
{
bit[x]+=a;
x+=x&(-x);
}
}
public static void main(String[] args) {
Scanner reader = new Scanner(System.in);
n=reader.nextInt();
for(int i=1;i<=n;i++)
{
a[i]=reader.nextInt();
b[i]=a[i];
}
Arrays.sort(b,1,n+1);
for(int i = 1; i <= n; i++) {
a[i] = Arrays.binarySearch(b, 1 ,n + 1,a[i]);
}
BigInteger ans=BigInteger.valueOf(0);
for(int i=1;i<=n;i++)
{
ans=ans.add(BigInteger.valueOf((sum(n)-sum(a[i]))*(n-i+1)));
add(a[i],i);
}
System.out.println(ans);
}
}
错误代码:
import java.math.BigInteger;
import java.util.*;
import java.util.Scanner; class node
{
int x;
int id;
}
class cmp implements Comparator<node>
{
public int compare(node A,node B)
{
if(A.x<B.x)return -1;
else if(A.x==B.x)return 0;
else return 1;
}
}
public class Main{
public final static int N=(int)1e6+9;
public static int n;
public static node a[]=new node[N];
public static int b[]=new int[N];
public static long bit[]=new long[N];
public static long sum(int x)
{
long ret=0;
while(x>0)
{
ret+=bit[x];
x-=x&(-x);
}
return ret;
}
public static void add(int x,long a)
{
while(x<=n)
{
bit[x]+=a;
x+=x&(-x);
}
}
public static void main(String[] args) {
Scanner reader = new Scanner(System.in);
n=reader.nextInt();
for(int i=1;i<=n;i++)
{
a[i]=new node();
a[i].x=reader.nextInt();
a[i].id=i;
}
//
Arrays.sort(a,1,n+1,new cmp()); int cnt=1;
a[0]=new node();
a[0].x=-1;
for(int i=1;i<=n;i++)
{
if(a[i].x!=a[i-1].x)b[a[i].id]=++cnt;
else b[a[i].id]=cnt;
}
//for(int i=1;i<=n;i++)System.out.println(b[i]);
BigInteger ans=BigInteger.valueOf(0);
for(int i=1;i<=n;i++)
{
ans=ans.add(BigInteger.valueOf((sum(cnt)-sum(b[i]))*(n-i+1)));
add(b[i],i);
}
System.out.println(ans);
}
}
牛客练习赛7 E 珂朵莉的数列的更多相关文章
- 牛客练习赛7 E 珂朵莉的数列(树状数组+爆long long解决方法)
https://www.nowcoder.com/acm/contest/38/E 题意: 思路: 树状数组维护.从大佬那里学习了如何处理爆long long的方法. #include<iost ...
- 牛客练习赛9 F - 珂朵莉的约数
题目描述 珂朵莉给你一个长为n的序列,有m次查询 每次查询给两个数l,r 设s为区间[l,r]内所有数的乘积 求s的约数个数mod 1000000007 输入描述: 第一行两个正整数n,m第二行一个长 ...
- 牛客练习赛9 B - 珂朵莉的值域连续段
题目描述 珂朵莉给你一个有根树,求有多少个子树满足其内部节点编号在值域上连续 一些数在值域上连续的意思即其在值域上构成一个连续的区间 输入描述: 第一行有一个整数n,表示树的节点数.接下来n–1行,每 ...
- 牛客网 牛客练习赛7 D. 珂朵莉的无向图(多源BFS)
题目链接 Problem D 比赛的时候完全想不到 直接对给定的这些点做多源$BFS$,把给定的这些点全都压到队列里,然后一个个做. 最后统计被访问的点的个数即可. #include <bit ...
- 牛客练习赛7E 珂朵莉的数列
题意:求所有子区间的逆序数对数之和 题解:树状数组维护,对于每一对逆序数(l,r)属于l*(n-r+1)个区间,计算每一对对结果的贡献即可,可用树状数组维护,sum维护(n-r+1),按逆序数那样操作 ...
- 牛客网 牛客练习赛7 B.购物-STL(priority_queue)
B.购物 时间限制:C/C++ 1秒,其他语言2秒空间限制:C/C++ 32768K,其他语言65536K64bit IO Format: %lld 题目描述 在遥远的东方,有一家糖果专卖店 这家糖果 ...
- 牛客 40F 珂朵莉的约数 (莫队)
珂朵莉给你一个长为n的序列,有m次查询 每次查询给两个数l,r 设s为区间[l,r]内所有数的乘积 求s的约数个数mod 1000000007 直接莫队暴力维护复杂度是$O(8m\sqrt{m})$. ...
- [数据结构]ODT(珂朵莉树)实现及其应用,带图
[数据结构]ODT(珂朵莉树)实现及其应用,带图 本文只发布于博客园,其他地方若出现本文均是盗版 算法引入 需要一种这样的数据结构,需要支持区间的修改,区间不同值的分别操作. 一般的,我们会想到用线段 ...
- 【并查集缩点+tarjan无向图求桥】Where are you @牛客练习赛32 D
目录 [并查集缩点+tarjan无向图求桥]Where are you @牛客练习赛32 D PROBLEM SOLUTION CODE [并查集缩点+tarjan无向图求桥]Where are yo ...
随机推荐
- js数组之有已有数组创建新的数组
concat()和splice()方法允许通过已经有的数组创建新的数组 concat()这个方法可以合并多个数组创建一个数组 splice()这个方法是获得截取一个数组中的子集创建一个新的数组. 理论 ...
- NPOI 导出excel 分表
/// <summary> /// 由DataTable导出Excel[超出65536自动分表] /// </summary> /// <param name=" ...
- 011-/etc/resolv.conf详解
- vue性能优化1--懒加载
懒加载也叫延迟加载,即在需要的时候进行加载.随用随载.为什么需要懒加载?像vue这种单页面应用,如果没有应用懒加载,运用webpack打包后的文件将会异常的大,造成进入首页时,需要加载的内容过多,时间 ...
- django学习网站
http://www.ziqiangxuetang.com/django/django-qrcode.html
- POJ 1836
刚开始二分写错了 wa了很久 这个二分 的好好想想 #include <iostream> #include<cstdio> #include<string.h> ...
- 使用 amcharts 和 highcharts 绘制多曲线时间趋势图的通用方法
工作中用到, 这里分享一下. 可以使用 amcharts 和 highcharts 在同一坐标中绘制多个对比曲线图. 当然, 对图形没有过多装饰, 可以参考 API 文档: highcharts: ...
- python 同时迭代多个序列
每次分别从一个序列中取一个元素 >>> xpts = [1, 5, 4, 2, 10, 7] >>> ypts = [101, 78, 37, 15, 62, 99 ...
- Java一元操作符++详解
废话不多说,直接上代码. package com.coshaho.learn; /** * * OperatorLearn.java Create on 2016-11-13 下午8:38:15 * ...
- Linux服务器配置---tftpserver
安装tftp-server 1.安装tftp-server [root@localhost weijie]# yum install -y tftp-server Loaded plugins: fa ...