CF #261 Div2 D. Pashmak and Parmida's problem (离散化+逆序对+线段树)_html/css_WEB-ITnose
Parmida is a clever girl and she wants to participate in Olympiads this year. Of course she wants her partner to be clever too (although he's not)! Parmida has prepared the following test problem for Pashmak.
There is a sequence a that consists of n integers a1,?a2,?...,?an. Let's denote f(l,?r,?x) the number of indices k such that: l?≤?k?≤?r and ak?=?x. His task is to calculate the number of pairs of indicies i,?j (1?≤?i??f(j,?n,?aj).
Help Pashmak with the test.
Input
The first line of the input contains an integer n (1?≤?n?≤?106). The second line contains n space-separated integers a1,?a2,?...,?an (1?≤?ai?≤?109).
Output
Print a single integer ? the answer to the problem.
Sample test(s)
Input
71 2 1 1 2 2 1
Output
Input
31 1 1
Output
Input
51 2 3 4 5
Output
题目给出的F函数,可以用离散的方法加预处理 将每个F(1,i,x)和F(j,n,x)求出,分别保存于f1, f2数组,那么题目就可以转化为: f1[i] > f2[j] && i
#include <stdio.h>#include <string.h>#include <algorithm>#include <math.h>#include <ctype.h>#include <iostream>#define lson o << 1, l, m#define rson o << 1|1, m+1, rusing namespace std;typedef long long LL;const int MAX = 200000000;const int maxn = 1000100;int n, a, b;int vis[maxn], tt[maxn], in[maxn], f1[maxn], f2[maxn], num[maxn<<2], fu[maxn];int bs(int v, int x, int y) { int m; while(x < y) { m = (x+y) >> 1; if(fu[m] >= v) y = m; else x = m+1; } return x;}void up(int o) { num[o] = num[o<<1] + num[o<<1|1];}void update(int o, int l, int r) { if(l == r) num[o]++; else { int m = (l+r) >> 1; if(a <= m) update(lson); else update(rson); up(o); }}LL query(int o, int l, int r) { if(a <= l && r <= b) return num[o]; int m = (l+r) >> 1; LL res = 0; if(a <= m) res += query(lson); if(m < b ) res += query(rson); return res;}int main(){ cin >> n; for(int i = 0; i < n; i++) { scanf("%d", &in[i]); tt[i] = in[i]; } sort(in, in+n); int k = 0; fu[k++] = in[0]; for(int i = 1; i < n; i++) if(in[i] != in[i-1]) fu[k++] = in[i]; for(int i = 0; i < n; i++) { int tmp = bs(tt[i], 0, k-1); vis[tmp]++; f1[i] = vis[tmp]; } memset(vis, 0, sizeof(vis)); for(int i = n-1; i >= 0; i--) { int tmp = bs(tt[i], 0, k-1); vis[tmp]++; f2[i] = vis[tmp]; b = max(b, f2[i]); } LL ans = 0; for(int i = 0; i < n; i++) { a = f2[i]+1; ans += query(1, 0, b); a = f1[i]; update(1, 0, b); } cout << ans << endl; return 0;}
??

熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

Video Face Swap
使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱門文章

熱工具

記事本++7.3.1
好用且免費的程式碼編輯器

SublimeText3漢化版
中文版,非常好用

禪工作室 13.0.1
強大的PHP整合開發環境

Dreamweaver CS6
視覺化網頁開發工具

SublimeText3 Mac版
神級程式碼編輯軟體(SublimeText3)

HTML適合初學者學習,因為它簡單易學且能快速看到成果。 1)HTML的學習曲線平緩,易於上手。 2)只需掌握基本標籤即可開始創建網頁。 3)靈活性高,可與CSS和JavaScript結合使用。 4)豐富的學習資源和現代工具支持學習過程。

HTML定義網頁結構,CSS負責樣式和佈局,JavaScript賦予動態交互。三者在網頁開發中各司其職,共同構建豐富多彩的網站。

WebDevelovermentReliesonHtml,CSS和JavaScript:1)HTMLStructuresContent,2)CSSStyleSIT和3)JavaScriptAddSstractivity,形成thebasisofmodernWebemodernWebExexperiences。

AnexampleOfAstartingTaginHtmlis,beginSaparagraph.startingTagSareEssentialInhtmlastheyInitiateEllements,defiteTheeTheErtypes,andarecrucialforsstructuringwebpages wepages webpages andConstructingthedom。

GiteePages靜態網站部署失敗:404錯誤排查與解決在使用Gitee...

實現圖片點擊後周圍圖片散開並放大效果許多網頁設計中,需要實現一種交互效果:點擊某張圖片,使其周圍的...

網頁批註功能的Y軸位置自適應算法本文將探討如何實現類似Word文檔的批註功能,特別是如何處理批註之間的間�...

HTML、CSS和JavaScript是Web開發的三大支柱。 1.HTML定義網頁結構,使用標籤如、等。 2.CSS控製網頁樣式,使用選擇器和屬性如color、font-size等。 3.JavaScript實現動態效果和交互,通過事件監聽和DOM操作。
