选择客栈

选择客栈

https://ac.nowcoder.com/acm/problem/16594

分析

对于每种颜色单独考虑,从左往右扫,记录最后出现的小于 p 的位置,对于贡献,我们枚举右端点,当记录的位置大于前一次出现的的位置时,更新可用左端点的数量。

#include <bits/stdc++.h>
using namespace std;
#define mem(a,b) memset(a,b,sizeof(a))
#define pii pair<int,int>
#define int long long
const int inf = 0x3f3f3f3f;
const int maxn = 2e5+7;
const int M = 1e9+7;

int a[maxn],b[maxn],cnt[maxn],lst[maxn],tot[maxn];

signed main()
{
    ios::sync_with_stdio(false);cin.tie(0);
    int n,k,p;
    cin>>n>>k>>p;
    for(int i = 1; i <= n; i++) 
    {
        cin>>a[i]>>b[i];
    }
    int ans = 0,r = 0;
    for(int i = 1; i <= n; i++) 
    {
        if(b[i] <= p) r = i;
        if(r >= lst[a[i]]) tot[a[i]] = cnt[a[i]];
        lst[a[i]] = i;
        ans += tot[a[i]];
        cnt[a[i]]++;
    }
    cout<<ans<<endl;
    return 0;
}
全部评论

相关推荐

牛客539033066号:放心吧,这里面一大半都不会去面试的,剩下一半面过了最后还是回拒,实际上免笔试的那些bg的人,没多少愿意去这些岗位,薪资水平在那里
点赞 评论 收藏
分享
2024-11-21 22:16
河南农业大学 C++
牛客410815733号:这是什么电影查看图片
点赞 评论 收藏
分享
评论
1
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务