当前位置:网站首页>ABC260 E - At Least One (Dual Pointer)
ABC260 E - At Least One (Dual Pointer)
2022-08-01 13:32:00 【Harris-H】
ABC260 E - At Least One(双指针)
一开始想到two pointers 了,But I don't know how to quickly maintain whether the conditions are met.
Originally opened onevector,然后用cntThe variable holds the currently reached number of groups.Then only the pair becomes 0 0 0barrel effectcnt.
因为每个 i i i 对应的vector Iterates at most twice.
因此复杂度是: O ( n + m ) O(n+m) O(n+m)
#include <iostream>
#include <vector>
using namespace std;
int main() {
int N, M;
cin >> N >> M;
vector<int> A(N), B(N);
for (int i = 0; i < N; i++) cin >> A[i] >> B[i];
vector<vector<int>> inv(M + 1);
for (int i = 0; i < N; i++) {
inv[A[i]].push_back(i);
inv[B[i]].push_back(i);
}
vector<int> cnt(N), ans(M + 3);
int cnt_zero = N;
for (int i = 1, j = 1; i <= M;) {
while (j <= M and cnt_zero != 0) {
for (auto& x : inv[j]) {
if (cnt[x] == 0) cnt_zero--;
cnt[x]++;
}
j++;
}
if (cnt_zero != 0) break;
ans[j - i]++, ans[M + 1 - i + 1]--;
for (auto& x : inv[i]) {
cnt[x]--;
if (cnt[x] == 0) cnt_zero++;
}
i++;
}
for (int i = 1; i <= M; i++) {
ans[i] += ans[i - 1];
cout << ans[i] << " \n"[i == M];
}
}
According to double pointer,我们可以枚举左端点,The right endpoint actually we just need to update r = m a x ( r , m x [ l + + ] ) r=max(r,mx[l++]) r=max(r,mx[l++])
这里 m x [ v a l ] mx[val] mx[val] are all left endpoints of v a l val valThe corresponding maximum right endpoint value.
显然 l + + l++ l++之后, r r r 必须大于等于 m x [ l ] mx[l] mx[l].
特别地,当 l = 1 l=1 l=1, r r r is the maximum value of all left endpoints.这样 r r r是最小的 r r r.
然后双指针 O ( 1 ) O(1) O(1)更新即可.
注意 l ≤ min { b [ i ] } l\le \min\{b[i]\} l≤min{ b[i]} ,不然无解.
时间复杂度: O ( n ) O(n) O(n)
// Problem: E - At Least One
// Contest: AtCoder - AtCoder Beginner Contest 260
// URL: https://atcoder.jp/contests/abc260/tasks/abc260_e
// Memory Limit: 1024 MB
// Time Limit: 2000 ms
// Date: 2022-07-30 23:13:40
// --------by Herio--------
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
const int N=2e5+5,M=2e4+5,inf=0x3f3f3f3f,mod=1e9+7;
const int hashmod[4] = {
402653189,805306457,1610612741,998244353};
#define mst(a,b) memset(a,b,sizeof a)
#define db double
#define PII pair<int,int>
#define PLL pair<ll,ll>
#define x first
#define y second
#define pb emplace_back
#define SZ(a) (int)a.size()
#define rep(i,a,b) for(int i=a;i<=b;++i)
#define per(i,a,b) for(int i=a;i>=b;--i)
#define IOS ios::sync_with_stdio(false),cin.tie(nullptr)
void Print(int *a,int n){
for(int i=1;i<n;i++)
printf("%d ",a[i]);
printf("%d\n",a[n]);
}
template <typename T> //x=max(x,y) x=min(x,y)
void cmx(T &x,T y){
if(x<y) x=y;
}
template <typename T>
void cmn(T &x,T y){
if(x>y) x=y;
}
PII a[N];
int left_mx[N];
int is_right[N];
ll pre[N];
int n,m;
bool ck(int x){
for(int i=1;i<=n;i++){
if(x<a[i].x) return false;
}
return true;
}
int main(){
ll mn = 1e18;
cin>>n>>m;
rep(i,1,n){
cin>>a[i].x>>a[i].y;
cmx(left_mx[a[i].x],a[i].y);
cmn(mn,1LL*a[i].y);
}
int l=1,r=m,ans=0;
while(l<=r){
int mid = l+r>>1;
if(ck(mid)) ans=mid,r=mid-1;
else l=mid+1;
}
//printf("%d %d\n",1,ans);
for(int i=1,j=ans;i<=mn;cmx(j,left_mx[i++])){
pre[j-i+1]++,pre[m-i+2]--;
}
rep(i,1,m) pre[i]+=pre[i-1];;
rep(i,1,m){
printf("%lld ",pre[i]);
}
return 0;
}
边栏推荐
- leetcode: 1201. Ugly Number III [Dichotomy + Mathematics + Inclusion and Exclusion Principle]
- fh511小风扇主控芯片 便携式小风扇专用8脚IC 三档小风扇升压芯片sop8
- Efficiency tools to let programmers get off work earlier
- 魔众短链接系统 v3.9.0
- iframe标签属性说明 详解[通俗易懂]
- Multithreading Case - Timer
- 论文详读《基于改进 LeNet-5 模型的手写体中文识别》,未完待补充
- PanGu-Coder:函数级的代码生成模型
- 魔众文档管理系统 v5.0.0
- tensorflow2.0手写数字识别(tensorflow手写体识别)
猜你喜欢
Gradle系列——Gradle测试,Gradle生命周期,settings.gradle说明,Gradle任务(基于Groovy文档4.0.4)day2-3
批量替换Word中的表格为图片并保存
多线程案例——阻塞式队列
什么是一致性哈希?可以应用在哪些场景?
库函数的模拟实现(strlen)(strcpy)(strcat)(strcmp)(strstr)(memcpy)(memmove)(C语言)(VS)
Windows 安装PostgreSQL
程序员的浪漫七夕
AtCoder Beginner Contest 261 D - Flipping and Bonus
使用open3d可视化3d人脸
全球都热炸了,谷歌服务器已经崩掉了
随机推荐
什么是混合元编程
Towhee 每周模型
8. SAP ABAP OData 服务如何支持创建(Create)操作
What Can Service Mesh Learn from SDN?
论文详读《基于改进 LeNet-5 模型的手写体中文识别》,未完待补充
AtCoder Beginner Contest 261 D - Flipping and Bonus
What is consistent hashing?In what scenarios can it be applied?
kubernetes之DaemonSet以及滚动更新
tensorflow2.0手写数字识别(tensorflow手写体识别)
树和二叉树的转换
【每日一题】1331. 数组序号转换
【5GC】5G网络切片与5G QoS的区别?
Qt实战案例(55)——利用QDir删除选定文件目录下的空文件夹
[Cloud Enjoying Freshness] Community Weekly Vol.73- DTSE Tech Talk: 1 hour in-depth interpretation of SaaS application system design
uniapp读取和写入文件
快速幂---学习笔记
[深入研究4G/5G/6G专题-47]: 5G Link Adaption链路自适应-3-下行链路自适应DLLA-PDSCH信道
测试发文
SQL function SQRT
sql中常用到的正则表达