博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Codeforces Round #424 (Div. 2, rated, based on VK Cup Finals) Cards Sorting(树状数组)
阅读量:6548 次
发布时间:2019-06-24

本文共 2733 字,大约阅读时间需要 9 分钟。

Cards Sorting
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Vasily has a deck of cards consisting of n cards. There is an integer on each of the cards, this integer is between 1 and 100 000, inclusive. It is possible that some cards have the same integers on them.

Vasily decided to sort the cards. To do this, he repeatedly takes the top card from the deck, and if the number on it equals the minimum number written on the cards in the deck, then he places the card away. Otherwise, he puts it under the deck and takes the next card from the top, and so on. The process ends as soon as there are no cards in the deck. You can assume that Vasily always knows the minimum number written on some card in the remaining deck, but doesn't know where this card (or these cards) is.

You are to determine the total number of times Vasily takes the top card from the deck.

Input

The first line contains single integer n (1 ≤ n ≤ 100 000) — the number of cards in the deck.

The second line contains a sequence of n integers a1, a2, ..., an (1 ≤ ai ≤ 100 000), where ai is the number written on the i-th from top card in the deck.

Output

Print the total number of times Vasily takes the top card from the deck.

Examples
input
4 6 3 1 2
output
7
input
1 1000
output
1
input
7 3 3 3 3 3 3 3
output
7
Note

In the first example Vasily at first looks at the card with number 6 on it, puts it under the deck, then on the card with number 3, puts it under the deck, and then on the card with number 1. He places away the card with 1, because the number written on it is the minimum among the remaining cards. After that the cards from top to bottom are [2, 6, 3]. Then Vasily looks at the top card with number 2 and puts it away. After that the cards from top to bottom are [6, 3]. Then Vasily looks at card 6, puts it under the deck, then at card 3 and puts it away. Then there is only one card with number 6 on it, and Vasily looks at it and puts it away. Thus, in total Vasily looks at 7 cards.

【题意】从上往下遍历所有的卡片。如果当前卡片上的数字跟当前堆中的最小值相等,则将该卡片扔点,否则将该卡片放到最低端,问一共遍历多少次。

【分析】模拟一遍,从最小的开始找,二分出可以衔接上一次位置的当前起始位置,遍历到此轮最后一个地方,再遍历前面没有遍历的地方,用树状数组来统计。

#include 
#define pb push_back#define mp make_pair#define vi vector
#define inf 0x3f3f3f3fusing namespace std;typedef long long LL;const int N = 1e5+50;int n;int sum[N];vector
vec[N];void upd(int x,int add){ for(int i=x;i<=100000;i+=i&(-i)){ sum[i]+=add; }}int qry(int x){ int ret=0; for(int i=x;i>=1;i-=i&(-i)){ ret+=sum[i]; } return ret;}int dis(int l,int r){ if(l==-1)return qry(r); else if(l

 

转载于:https://www.cnblogs.com/jianrenfang/p/7220432.html

你可能感兴趣的文章
抵制克苏恩[Lydsy2017年4月月赛]
查看>>
MySql Study Notes
查看>>
6 - laravel 基础 - 视图与模板引擎
查看>>
团队第二次作业
查看>>
linux 查询当前文件夹下的目录数量
查看>>
【python】入门第一篇
查看>>
1682: [Usaco2005 Mar]Out of Hay 干草危机
查看>>
supersr--NSURLConnection iOS2.0苹果原生请求
查看>>
iphone-common-codes-ccteam源代码 CCPlistFileReader.h
查看>>
构造方法
查看>>
SQL效率之索引
查看>>
线性支持向量分类机及其实现
查看>>
Yslow
查看>>
Axure产品原型设计工具
查看>>
ASM文件系统
查看>>
ajax学习笔记(原生js的ajax)
查看>>
mysql 函数 事务
查看>>
1312 连续自然数和
查看>>
进程/线程介绍
查看>>
SPSS-Friedman 秩和检验-非参数检验-K个相关样本检验 案例解析
查看>>