BZOJ 3524: [POI2014]KUR-Couriers

来源:https://www.cnblogs.com/Hammer-cwz-77/archive/2018/04/03/8705805.html
-Advertisement-
Play Games

[POI2014]KUR-Couriers 題目描述 Byteasar works for the BAJ company, which sells computer games. The BAJ company cooperates with many courier companies that ...


[POI2014]KUR-Couriers

題目描述

Byteasar works for the BAJ company, which sells computer games.

The BAJ company cooperates with many courier companies that deliver the games sold by the BAJ company to its customers.

Byteasar is inspecting the cooperation of the BAJ company with the couriers.

He has a log of successive packages with the courier company that made the delivery specified for each package.

He wants to make sure that no courier company had an unfair advantage over the others.

If a given courier company delivered more than half of all packages sent in some period of time, we say that it dominated in that period.

Byteasar wants to find out which courier companies dominated in certain periods of time, if any.

Help Byteasar out!

Write a program that determines a dominating courier company or that there was none.

給一個數列,每次詢問一個區間內有沒有一個數出現次數超過一半

輸入輸出格式

輸入格式:

 

The first line of the standard input contains two integers,  and  (), separated by a single space, that are the number of packages shipped by the BAJ company and the number of time periods for which the dominating courier is to be determined, respectively.

The courier companies are numbered from  to (at most) .

The second line of input contains  integers,  (), separated by single spaces;  is the number of the courier company that delivered the -th package (in shipment chronology).

The  lines that follow specify the time period queries, one per line.

Each query is specified by two integers,  and  (), separated by a single space.

These mean that the courier company dominating in the period between the shipments of the -th and the -th package, including those, is to be determined.

In tests worth  of total score, the condition  holds, and in tests worth  of total score .

 

輸出格式:

 

The answers to successive queries should be printed to the standard output, one per line.

(Thus a total of  lines should be printed.) Each line should hold a single integer: the number of the courier company that dominated in the corresponding time period, or  if there was no such company.

 

輸入輸出樣例

輸入樣例#1: 
7 5
1 1 3 2 3 4 3
1 3
1 4
3 7
1 7
6 6
輸出樣例#1: 
1
0
3
0
4

說明

給一個數列,每次詢問一個區間內有沒有一個數出現次數超過一半

題解:

就是一個主席樹模板。。

 1 #include<bits/stdc++.h>
 2 using namespace std;
 3 
 4 const int maxn=5e5+5;
 5 
 6 struct node{
 7     int sum,l,r;
 8 }t[maxn*21];
 9 int n,m,root[maxn],cnt=1;
10 
11 void bt(int &now,int x,int l,int r)
12 {
13     t[cnt++]=t[now];
14     now=cnt-1;
15     t[now].sum++;
16     if(l==r)
17         return ;
18     int mid=(l+r)>>1;
19     if(x<=mid)
20         bt(t[now].l,x,l,mid);
21     else
22         bt(t[now].r,x,mid+1,r);
23 }
24 
25 int query(int i,int j,int x,int l,int r)
26 {
27     if(l==r)
28         return l;
29     int mid=(l+r)>>1;
30     if(2*(t[t[j].l].sum-t[t[i].l].sum)>x)
31         return query(t[i].l,t[j].l,x,l,mid);
32     if(2*(t[t[j].r].sum-t[t[i].r].sum)>x)
33         return query(t[i].r,t[j].r,x,mid+1,r);
34     return 0;
35 }
36 
37 int main()
38 {
39     scanf("%d%d",&n,&m);
40     root[0]=0;
41     for(int i=1;i<=n;i++)
42     {
43         int x;
44         scanf("%d",&x);
45         root[i]=root[i-1];
46         bt(root[i],x,1,n);
47     }
48     for(int i=1;i<=m;i++)
49     {
50         int l,r;
51         scanf("%d%d",&l,&r);
52         printf("%d\n",query(root[l-1],root[r],r-l+1,1,n));
53     }
54     return 0;
55 }

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

-Advertisement-
Play Games
更多相關文章
  • 《Axure RP 6原型設計精髓》內容簡介:即使你不懂任何編程語言,無法控制項目管理、預算和進展計劃,也可以通過《Axure RP 6原型設計精髓》掌握Axure,讓你的設計更具創造力和高效。 《Axure RP 6原型設計精髓》先介紹Axure的界面、術語、功能,然後以一個中型示例項目為背景依次 ...
  • HTML+CSS網站開發兵書是一本與眾不同的HTML標記語言讀物,它以實際的網頁為主,為讀者展現了網頁的組成部分及各部分的設計。其他類似的書都是以HTML標簽來講解,本書不同的是,在講解標簽舉例的時候會將生活中的哲理、常識等都融入其中,讓讀者感受到這本書的“生命力”,從而讓讀者對HTML有一個很深刻 ...
  • HTML 5與CSS 3指南(第3版)是HTML 5與CSS 3領域公認的標桿之作,被讀者譽為“系統學習HTML 5與CSS 3的著作”和“Web前端工程師案頭必備圖書之一”。 不僅是HTML 5與CSS 3圖書領域當之無愧的領頭羊,而且在整個原創電腦圖書領域是佼佼者。 第3版首先從技術的角度根據 ...
  • 寫在前面 嗯,首先是java,這學期第一次oo作業佈置下來的周末才開始看的,第一次作業因此寫得有些手忙腳亂。不過大概看了一遍後發現比c好用,入門更簡單吧,好多操作直接import一下就能用了,碼代碼的時候只需大概想想實現思路就好了,還是蠻好用的。 第一次作業 Metric的度量 程式的類圖 分析 第 ...
  • 目錄 1 許可權控制是什麼 1.1 ACL 1.2 RBAC 1.2.1 名詞術語 1.2.2 RBAC定義 1.2.3 RBAC分類 1.2.3.1 RBAC0 1.2.3.2 RBAC1 1.2.3.3 RBAC2 1.2.4 RBAC 介面 2 垂直許可權(功能許可權) 3 水平許可權(數據許可權) 4 ...
  • 上章鏈接: 22.C++- 繼承與組合,protected訪問級別 繼承方式 繼承方式位於定義子類的”:”後面,比如: 繼承方式預設為private 在C++中,繼承方式共有3種: public繼承 -指父類的成員(變數和函數)訪問級別,在子類中保持不變 private繼承 -指父類的成員,在子類中 ...
  • 使用了masteruml插件來生成類圖和metrics插件分析代碼 第一次作業 1、UML類圖 >在第一次作業中,使用了兩個類,代碼中有沒有使用的變數與函數,為平衡兩個類的內容,我將輸出函數放在了多項式類中,但是仍然不夠平衡。 2、量化分析: >處理字元串輸入的過程,按照面向過程的思路來寫,嵌套的判 ...
  • 今天調休了,閑來無事,再扯一個設計模式。我不是單純的說設計模式,更多的是說編程思想上的東西。人心隔肚皮,人眼看到的不一定是真相,所以說女孩結婚後流的淚是當初眼拙腦殘的結果。不過愛情中沒有對錯,愛情本來就是折磨死人不犯法。 說說繼承與組合,繼承偏重於對象本身具有;組合偏重於包括其他對象的東西(靜的,動 ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...