首页 > 其他分享 >[AGC002D] Stamp Rally

[AGC002D] Stamp Rally

时间:2024-09-09 21:39:16浏览次数:7  
标签:cnt fx fa Stamp int AGC002D Uni Rally find

题意

给定一张无向图,\(q\) 次询问从 \(x, y\) 出发,经过 \(z\) 个点,可以重复经过每个点只算一次,求经过的边最大编号最小是多少。

\(n, q \le 10 ^ 5\)。

Sol

先建出瓶颈生成树,问题变成树上瓶颈连通块?

似乎除了可持久化并查集没有其他做法。

首先根号做法显然,维护 \(\sqrt n\) 个并查集,暴力枚举在哪个块,哪个位置。

考虑 \(\texttt{Kruskal}\) 重构树。

首先最小生成树就是最小瓶颈生成树的充分条件。

其次在连接 \((x, y, z)\) 时,考虑新建一个节点将 \(x\) 挂在左儿子,\(y\) 挂在右儿子。

这样瓶颈连通块就变为子树叶节点数,求个 \(\texttt{LCA}\),套一个二分答案就做完了。

注意事实上这样建出来的并不是完全二叉树,树高并不是 \(log\),并不像点分树这样优美。

赛场上实际可以手搓构造方式满足上述限制。

Code

#include <iostream>
#include <algorithm>
#include <cstdio>
#include <array>
#include <assert.h>
using namespace std;
#ifdef ONLINE_JUDGE

#define getchar() (p1 == p2 && (p2 = (p1 = buf) + fread(buf, 1, 1 << 21, stdin), p1 == p2) ? EOF : *p1++)
char buf[1 << 23], *p1 = buf, *p2 = buf, ubuf[1 << 23], *u = ubuf;

#endif
int read() {
    int p = 0, flg = 1;
    char c = getchar();
    while (c < '0' || c > '9') {
        if (c == '-') flg = -1;
        c = getchar();
    }
    while (c >= '0' && c <= '9') {
        p = p * 10 + c - '0';
        c = getchar();
    }
    return p * flg;
}
void write(int x) {
    if (x < 0) {
        x = -x;
        putchar('-');
    }
    if (x > 9) {
        write(x / 10);
    }
    putchar(x % 10 + '0');
}
bool _stmer;

const int N = 1e5 + 5, M = 2e5 + 5;

namespace Uni {

array <int, M> fa, siz;

int find(int x) {
    if (x == fa[x]) return x;
    return fa[x] = find(fa[x]);
}

void merge(int x, int y) {
    int fx = find(x),
        fy = find(y);
    if (fx == fy) return;
    siz[fy] += siz[fx], fa[fx] = fy;
}

void init(int n) {
    for (int i = 1; i <= n; i++)
        siz[fa[i] = i] = 1;
}

} //namespace Uni

namespace Kst {

array <array <int, 2>, M> ch;
array <int, M> len, siz;

int cnt;

array <array <int, 21>, M> fa;

void add(int x, int y, int z) {
    if (Uni::find(x) == Uni::find(y)) return;
    int fx = Uni::find(x), fy = Uni::find(y);
    cnt++, Uni::fa[cnt] = cnt;
    ch[cnt][0] = fx, ch[cnt][1] = fy;
    fa[fx][0] = fa[fy][0] = cnt;
    Uni::merge(x, y), Uni::merge(y, cnt);
    len[cnt] = z, siz[cnt] = Uni::siz[cnt];
}

void init() {
    for (int j = 1; j <= 20; j++)
        for (int i = 1; i <= cnt; i++)
            fa[i][j] = fa[fa[i][j - 1]][j - 1];
    len[0] = 1e9;
}

int check(int x, int y, int k) {
    for (int i = 20; ~i; i--) {
        if (len[fa[x][i]] <= k) x = fa[x][i];
        if (len[fa[y][i]] <= k) y = fa[y][i];
    }
    return (siz[x] + siz[y]) / (1 + (x == y));
}

} //namespace Kst

bool _edmer;
int main() {
    cerr << (&_stmer - &_edmer) / 1024.0 / 1024.0 << "MB\n";
    int n = read(), m = read();
    Uni::init(n), Kst::cnt = n;
    for (int i = 1; i <= n; i++) Kst::siz[i] = 1;
    for (int i = 1; i <= m; i++) {
        int x = read(), y = read();
        Kst::add(x, y, i);
    }
    Kst::init();
    /* cerr << Kst::check(2, 4, 2) << endl; */
    int q = read();
    while (q--) {
        int x = read(), y = read(), k = read();
        int l = 1, r = m, ans = -1;
        while (l <= r) {
            int mid = (l + r) >> 1;
            if (Kst::check(x, y, mid) >= k)
                r = mid - 1, ans = mid;
            else l = mid + 1;
        }
        assert(~ans);
        write(ans), puts("");
    }
    return 0;
}

标签:cnt,fx,fa,Stamp,int,AGC002D,Uni,Rally,find
From: https://www.cnblogs.com/cxqghzj/p/18405380

相关文章

  • kingbase——创建timestampdiff函数
    创建函数如下:CREATEORREPLACEFUNCTION"ops_data"."timestampdiff"("para1"text,"para2""sys"."timestamp","para3""sys"."timestamp")RETURNS"pg_catalog".&q......
  • [POI2014] RAJ-Rally 题解
    前言题目链接:Hydro&bzoj;黑暗爆炸;洛谷。题意简述DAG求删点后最长路的最小值。\(n\leq5\times10^5\),\(m\leq10^6\)。题目分析其实对于删点/边加查询最长/短路的套路是有的。比如:故乡的梦、桥。本题也类似。我们考虑,如果删除的边不在原来最长路上,那么删之后的......
  • orcla的timestamp与date如何判断是否相等 oracle的date和timestamp区别
    orcla的timestamp与date如何判断是否相等oracle的date和timestamp区别转载mob6454cc6d3e232024-04-2513:03:57文章标签sql数据字符串获取时间文章分类架构后端开发阅读数777我整理的一些关于【IT人转技术管理】的项目学习资料(附讲解~~)和大家一起分享、学习......
  • MySQL中日期和时间戳的转换:字符到DATE和TIMESTAMP的相互转换
    在MySQL中,经常需要在DATE、TIMESTAMP和字符串之间进行相互转换。以下是一些常见的转换方法:1.字符串到日期/时间类型字符串转DATE:使用STR_TO_DATE()函数将字符串转换为DATE类型。你需要提供字符串的格式。SELECTSTR_TO_DATE('2024-08-24','%Y-%m-%d')ASmy_......
  • PostgreSQL 之 to_timestamp函数
    to_timestamp是PostgreSQL中的一个函数,用于将字符串或数字转换为时间戳。以下是关于to_timestamp的详细介绍:引入版本to_timestamp函数在PostgreSQL7.3版本中引入。语法to_timestamp有两种主要的用法:1.将字符串转换为时间戳to_timestamp(text,text)第一......
  • Pandas 中的 pd.Timestamp() 行为
    试图理解为什么t1采用当前日期,而t2采用Pandas中的纪元日期Python任何想法都会有帮助。importpandasaspdt1=pd.Timestamp("23:12:05")print("t1:",t1)t2=pd.Timestamp(1)print("t2:"t2)输出:t1:2024-07-2323:12:05t......
  • 为什么StampedLock会导致CPU100%?
    StampedLock是Java8引入的一种高级的锁机制,它位于java.util.concurrent.locks包中。与传统的读写锁(ReentrantReadWriteLock)相比,StampedLock提供了更灵活和更高性能的锁解决方案,尤其适用于读操作远多于写操作的场景。1.特点展示相比于Java中的其他锁,StampedLock具有以......
  • MySQL中datetime和timestamp的区别
    #MySQL中datetime和timestamp的区别相同点两个数据类型存储时间的格式一致。均为YYYY-MM-DDHH:MM:SS两个数据类型都包含「日期」和「时间」部分。两个数据类型都可以存储微秒的小数秒(秒后6位小数秒)自动更新和默认值TIMESTAMP:支持默认值为当前时间,且在记录更新时可以......
  • 科研绘图系列:R语言STAMP图(STAMP Plot)
    介绍STAMP图(STAMPplot)并非一个广泛认知的、具有特定名称的图表类型,而是可能指在STAMP(StatisticalAnalysisofMetagenomicProfiles:“STAMP:statisticalanalysisoftaxonomicandfunctionalprofiles”)软件使用过程中生成的各种统计和可视化图表的总称。STAMP是一款......
  • flink 如果是有序流,还需要 forMonotonousTimestamps吗
    如果数据是有序的,即数据完全按照时间发生的顺序到达,那么在flink中,虽然理论上不需要额外的Watermark策略来标识数据的有序性,但使用forMonotonousTimestamps策略仍然有其必要性。以下是详细解释:水位的作用即使数据完全有序,flink的窗口计算仍然需要watermark来触发。watermark提......