【枚举区间】CF Edu10 C

Problem - C - Codeforces

题意:

思路:

应该反思一下这么典的思路为什么会想不到

枚举区间,一个很经典的套路是,枚举 l,对 r 计数

对于一个l,r取这么多限制中离 l 最近的那个

Code:

cpp 复制代码
#include <bits/stdc++.h>

#define int long long

using i64 = long long;

constexpr int N = 3e5 + 10;
constexpr int M = 3e5 + 10;
constexpr int P = 2e6;
constexpr i64 Inf = 1e18;
constexpr int mod = 1e9 + 7;
constexpr double eps = 1e-6;

int n, m;
int a[N], pos[N], r[N];

void solve() {
    std::cin >> n >> m;
    for (int i = 1; i <= n; i ++) {
        std::cin >> a[i];
        pos[a[i]] = i;
        r[i] = n;
    }

    for (int i = 1; i <= m; i ++) {
        int x, y;
        std::cin >> x >> y;
        if (pos[x] > pos[y]) std::swap(x, y);
        r[pos[x]] = std::min(pos[y] - 1, r[pos[x]]);
    }

    for (int i = n - 1; i >= 1; i --) {
        r[i] = std::min(r[i], r[i + 1]);
    }

    int ans = 0;
    for (int i = 1; i <= n; i ++) ans += r[i] - i + 1;
    std::cout << ans << "\n";
}
signed main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    
    int t = 1;

    while (t--) {
        solve();
    }
    
    return 0;
}
相关推荐
BothSavage12 小时前
Trae远程开发中DeepSeek自定义模型4054错误的排查与修复
算法
小林ixn12 小时前
从暴力到KMP:一道题彻底搞懂字符串匹配的前世今生
算法
烬羽13 小时前
字符串算法入门:从反转字符串到回文判断,面试不再慌
算法·面试
先吃饱再说1 天前
判断回文字符串,从一行代码到双指针优化
算法
黄敬峰1 天前
深入理解算法核心:从递归思想、数组扁平化到快速排序
算法
得物技术1 天前
从狂野代码到按目标生产:得物推荐 AI Harness 的工程化实践|AICon 演讲整理
人工智能·算法·架构
AI小老六2 天前
SkillOpt 架构拆解:把 Skill 文本当参数,用执行轨迹训练 Agent
后端·算法·ai编程
胡萝卜术2 天前
从“分数打架”到“排名投票”:为什么你的ChatBI必须用RRF?
算法·设计模式·面试