POJ 2104 K-th Number(主席樹)

来源:http://www.cnblogs.com/zwfymqz/archive/2017/07/08/7137467.html
-Advertisement-
Play Games

K-th Number Time Limit: 20000MS Memory Limit: 65536K Total Submissions: 57427 Accepted: 19856 Case Time Limit: 2000MS Description You are working for ...


K-th Number
Time Limit: 20000MS   Memory Limit: 65536K
Total Submissions: 57427   Accepted: 19856
Case Time Limit: 2000MS

Description

You are working for Macrohard company in data structures department. After failing your previous task about key insertion you were asked to write a new data structure that would be able to return quickly k-th order statistics in the array segment. 
That is, given an array a[1...n] of different integer numbers, your program must answer a series of questions Q(i, j, k) in the form: "What would be the k-th number in a[i...j] segment, if this segment was sorted?" 
For example, consider the array a = (1, 5, 2, 6, 3, 7, 4). Let the question be Q(2, 5, 3). The segment a[2...5] is (5, 2, 6, 3). If we sort this segment, we get (2, 3, 5, 6), the third number is 5, and therefore the answer to the question is 5.

Input

The first line of the input file contains n --- the size of the array, and m --- the number of questions to answer (1 <= n <= 100 000, 1 <= m <= 5 000). 
The second line contains n different integer numbers not exceeding 109 by their absolute values --- the array for which the answers should be given. 
The following m lines contain question descriptions, each description consists of three numbers: i, j, and k (1 <= i <= j <= n, 1 <= k <= j - i + 1) and represents the question Q(i, j, k).

Output

For each question output the answer to it --- the k-th number in sorted a[i...j] segment.

Sample Input

7 3
1 5 2 6 3 7 4
2 5 3
4 4 1
1 7 3

Sample Output

5
6
3

Hint

This problem has huge input,so please use c-style input(scanf,printf),or you may got time limit exceed.

Source

Northeastern Europe 2004, Northern Subregion     主席樹的模板題。  
 1 #include<iostream>
 2 #include<cstdio>
 3 #include<cstring>
 4 #include<cmath>
 5 #include<queue>
 6 #include<algorithm>
 7 using namespace std;
 8 const int MAXN=10000001;
 9 void read(int &n)
10 {
11     char c='+';int x=0;bool flag=0;
12     while(c<'0'||c>'9')
13     {c=getchar();if(c=='-')flag=1;}
14     while(c>='0'&&c<='9')
15     {x=x*10+c-48,c=getchar();}
16     flag==1?n=-x:n=x;
17 }
18 int n,m;
19 int a[MAXN];
20 int hash[MAXN];
21 int root[MAXN/2];
22 int now,tot;// 所有節點的總出現次數 
23 int ls[MAXN],rs[MAXN],cnt[MAXN];
24 void build(int &cur,int l,int r)
25 {
26     cur=tot++;// 總的節點數量 
27     cnt[cur]=0; 
28     if(l!=r)
29     {
30         int mid=(l+r)/2;
31          build(ls[cur],l,mid);
32          build(rs[cur],mid+1,r);    
33     }
34 }
35 void update(int pre,int pos,int &cur,int l,int r)
36 {
37     cur=tot++;
38     cnt[cur]=cnt[pre]+1;
39     ls[cur]=ls[pre];rs[cur]=rs[pre];
40     if(l==r)
41         return ;
42     int mid=(l+r)/2;
43     if(pos<=mid)
44         update(ls[pre],pos,ls[cur],l,mid);
45     else    
46         update(rs[pre],pos,rs[cur],mid+1,r);
47 }
48 int query(int lt,int rt,int l,int r,int k)
49 {
50     if(l==r)
51         return l;
52     int now=cnt[ls[rt]]-cnt[ls[lt]];
53     int mid=(l+r)/2;
54     if(k<=now)
55         return query(ls[lt],ls[rt],l,mid,k);
56     else 
57         return query(rs[lt],rs[rt],mid+1,r,k-now);
58 }
59 int main()
60 {
61     while(scanf("%d%d",&n,&m)==2)
62     {
63         for(int i=1;i<=n;i++)
64         {
65             read(a[i]);
66             hash[i]=a[i];
67         }
68         sort(hash+1,hash+n+1);
69         int size=unique(hash+1,hash+n+1)-hash-1;
70         for(int i=1;i<=n;i++)
71             a[i]=lower_bound(hash+1,hash+size+1,a[i])-hash;// 排序+離散化 
72         
73         tot=0;
74         build(root[0],1,size);
75         
76         for(int i=1;i<=n;i++)
77             update(root[i-1],a[i],root[i],1,size);// 建出所有的樹 
78         
79         for(int i=1;i<=m;i++)
80         {
81             int x,y,z;
82             read(x);read(y);read(z);
83             printf("%d\n",hash[query(root[x-1],root[y],1,size,z)]);
84         }    // 查詢 
85     }
86     
87     return 0;
88 }

 

 
您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 數據結構:是指通過某種方式組織在一起的數據元素的集合 主要包括: 序列:主要介紹列表、元組、字元串 映射:字典 集合(set) 接下來,會對列表進行介紹 ...
  • 上一篇文章中不知道大家發現端倪木有,兩張照片對比很明顯發現第一張是信息很明顯的,第二張是亂碼的。 為什麼會出現這種情況?細心的童鞋可能發現是我們發送給伺服器的請求連接的數據不同: 第一張圖的信息是{"roomid":98284,"uid":271298361556770} 第二張圖的信息是{"uid ...
  • google已經將kotlin作為android開發的首選語言,然而我並不是android開發者,也不是java開發者,那麼我為什麼要學kotlin呢? 也許是心血來潮,也許是因為JB家出的編程語言必定會火,也許我只是JB家的忠實粉絲而已,不管怎麼樣吧,在此立一個flag,開啟我的kotlin學習之 ...
  • 一 概述 1.EL Expression Language,表達式語言,一種不同於編程語言的語言,用於訪問對象或者為對象賦值,取代JSP頁面中嵌套的java代碼,使頁面風格統一。 2.語法格式 expression既可以是屬性,也可以是字面值,還可以是算術表達式、關係表達式、邏輯表達式、條件表達式等 ...
  • 今天第一次接觸java的網頁編程,因為我之前是學習php的。所以學習jsp的話感覺是很相似的。第一次入門的程式是混編的形式,和php的用法相識,java規定的嵌入語言是用<% %>來表示是java的代碼,而php的話是使用<?php ?>來表示php的代碼塊。 這次的學習的效果如下: 代碼如下: 在 ...
  • 題目背景 很多學校流行一種比較的習慣。老師們很喜歡詢問,從某某到某某當中,分數最高的是多少。這讓很多學生很反感。 題目描述 不管你喜不喜歡,現在需要你做的是,就是按照老師的要求,寫一個程式,模擬老師的詢問。當然,老師有時候需要更新某位同學的成績 輸入輸出格式 輸入格式: 第一行,有兩個正整數 N 和 ...
  • 動態代理案例1:/*要求:運用Proxy動態代理來增強方法題目: 1.定義介面Fruit,其中有addFruit方法 2.定義實現類FruitImpl,實現Fruit介面 3.定義測試類,利用動態代理類的方式,增強addFruit方法*/ 1 import java.lang.reflect.Pro... ...
  • 文件內容如下: 現在看如何處理並轉成列表! 輸出結果如下: ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...