luogu P5867 【[SEERC2018]Fishermen】
氵題解
初步審題,很容易就能想到列舉每條魚,找到能釣到這一條魚的漁夫最靠左與最靠右的漁夫的位置,直接列舉,時間複雜度為O(n^2)
但對於線性的列舉很容易就可以想到排序+二分
由於蒟蒻不會過載運算子,所以手打排序
基本思路確定了,那麼怎樣確定能釣到每一條魚的漁夫最靠左與最靠右的漁夫的位置
由此,我們可以推出 若魚的座標為 (x , y),則可以釣到第i條魚的漁夫最左邊可能在 x ± \pm ± (l-y)
#include<cstdio>
#include<algorithm>
using namespace std;
const int maxn=2*1e5;
struct node {
int x,y;
} fish[maxn+5];//魚的位置
int ans[maxn+5],num[maxn+5],c[maxn+5],fisher[maxn+5];
//num[i]表示實際位置為i的點是當前在num[i] , c[i]表示i點實際編號為c[i]
//fisher表示每一個漁夫的位置
inline void rd(int &rex) {//讀優
rex=0;
char c=getchar();
while(c<'0'||c>'9')c=getchar();
while(c>='0'&&c<='9')
rex=rex*10+c-'0',c=getchar();
}
void swap(int &x,int &y) {//交換
int t=x;
x=y,y=t;
}
void qsort(int l,int r) {//手寫快排
int i=l,j=r,mid=fisher[(l+r)/2],p;
while(i<=j) {
while(fisher[i]<mid)i++;
while(fisher[j]>mid)j--;
if(i<=j) {
swap(fisher[i],fisher[j]);
swap(c[i],c[j]);
i++,j--;
}
}
if(l<j)qsort(l,j);
if(i<r)qsort(i,r);
}
int main() {
int n,m,l;
rd(n);
rd(m);
rd(l);
for(int i=1; i<=n; i++) {
rd(fish[i].x);
rd(fish[i].y);
}
for(int i=1; i<=m; i++)
rd(fisher[i]),c[i]=i;
qsort(1,m);//使漁夫的位置單調遞增,滿足二分的條件
for(int i=1; i<=n; i++) {
if(fish[i].y>l)continue;
int head=-(l-fish[i].y)+fish[i].x,tail=l-fish[i].y+fish[i].x;
head=lower_bound(fisher+1,fisher+1+m,head)-fisher;
tail=upper_bound(fisher+1,fisher+1+m,tail)-fisher;
ans[head]++,ans[tail]--;
}
for(int i=1; i<=m; i++)
ans[i]+=ans[i-1],num[c[i]]=i;
for(int i=1; i<=m; i++)
printf("%d\n",ans[num[i]]);
return 0;
}
相關文章
- Luogu P10812
- luogu2516題解
- luogu_P3373 Solution
- 【Luogu1048】採藥
- 【luogu1816】忠誠
- [PEP] Luogu 二週年記
- Luogu8990 做題記錄
- luogu P6835 概率DP 期望
- $Luogu P2029$ 跳舞 題解
- luogu-P3853 路標設定
- [luogu P4211] [LNOI2014]LCA
- [luogu3709][大爺的字串題]字串
- 【Luogu1616】瘋狂的採藥
- 【luogu3373】模板 線段樹 2
- 【luogu3372】線段樹 1 模板
- Luogu P5563 [Celeste-B] No More Running
- Luogu P6864 [RC-03] 記憶
- [luogu1486][鬱悶的出納員]
- 【luogu3368】模板 樹狀陣列 2陣列
- Solution - Luogu P10918 小分圖最大匹配
- [分塊] [Luogu AT_joisc2014_c] 歷史研究
- luogu P2569 [SCOI2010]股票交易
- luogu P4198 樓房重建——線段樹
- Luogu P5005 中國象棋 - 擺上馬 / Luogu P8756 國際象棋 題解 [ 藍 ] [ 狀壓 dp ] [ 位運算 ]
- Luogu P10869 LCMs 題解 [ 黃 ] [ lcm ] [ 最短路 ]
- Solution - Luogu P9575 「TAOI-2」喵了個喵 Ⅳ
- luogu P1896 [SCOI2005] 互不侵犯 題解
- noip模擬10[入陣曲·將軍令·星空](luogu)
- 51nod-基因匹配+luogu-【模板】最長公共子序列
- [POI2007] [LUOGU P3451]旅遊景點 Tourist Attractions
- [Luogu-P3676]小清新資料結構題-題解資料結構
- Luogu P2460 [SDOI2007] 科比的比賽 題解
- Luogu P11014 「ALFR Round 4」D 罪人的終幕 題解
- Luogu P10674 【MX-S1-T3】電動力學
- Luogu P9542 [湖北省選模擬 2023] 棋聖 alphagoGo
- 【題解】金牌導航-高斯消元/Luogu P3232 遊走
- luogu.org 試煉場關卡1-5 簡單字串字串
- Luogu P11361 NOIP2024 編輯字串 題解 [ 黃 ] [ 貪心 ]字串