Codeforces Round #466 (Div. 2) F - Machine Learning

可以观察到,因为我们答案是通过MEX函数得到,那么假设,当前MEX的值是p,那么这时候一共有1+2+3+4...+p-1个与\(c_1\),\(c_2\),\(c_3\)...\(c_p-1\)相同,一共是p*(p-1)/2个数字,那么MEX值一定不超过\(\sqrt n\)。故暴力能统计答案。
对于有修改的询问,我们采用待修改莫队,取块的大小为\(n^{\frac23}\)。

#include<iostream>
#include<cstring>
#include<algorithm>
#include<cmath>
#include<cstdlib>
#include<climits>
#include<stack>
#include<vector>
#include<queue>
#include<set>
#include<bitset>
#include<map>
//#include<regex>
#include<cstdio>
#pragma GCC optimize(2)
#define up(i,a,b)  for(int i=a;i<b;i++)
#define dw(i,a,b)  for(int i=a;i>b;i--)
#define upd(i,a,b) for(int i=a;i<=b;i++)
#define dwd(i,a,b) for(int i=a;i>=b;i--)
//#define local
typedef long long ll;
typedef unsigned long long ull;
const double esp = 1e-6;
const double pi = acos(-1.0);
const int INF = 0x3f3f3f3f;
const int inf = 1e9;
using namespace std;
ll read()
{
    char ch = getchar(); ll x = 0, f = 1;
    while (ch<'0' || ch>'9') { if (ch == '-')f = -1; ch = getchar(); }
    while (ch >= '0' && ch <= '9') { x = x * 10 + ch - '0'; ch = getchar(); }
    return x * f;
}
typedef pair<int, int> pir;
#define lson l,mid,root<<1
#define rson mid+1,r,root<<1|1
#define lrt root<<1
#define rrt root<<1|1
int n, q;
const int N = 1e5 + 10;
int belong[N * 2];
struct qur {
    int l, r, t;
    int id;
    bool operator<(const qur a)const {
        if (belong[l] == belong[a.l]) {
            if (belong[r] == belong[a.r])return t < a.t;
            else return r < a.r;
        }
        else return l < a.l;
    }
}q1[N];
struct qur2 {
    int pi, x;
}q2[N];
map<int, int>mp;
int siz, q_cnt;
int getid(int x)
{
    return mp[x] ? mp[x] : mp[x]=++siz;
}
int a[N], a_temp[N];
int c[2 * N], wi[2 * N];
int l = 1, r = 0, t = 0;
void add(int x)
{
    c[wi[x]]--;
    wi[x]++;
    c[wi[x]]++;
}
void del(int x)
{
    c[wi[x]]--;
    wi[x]--;
    c[wi[x]]++;
}
void update(int tim)
{
    int i = q2[tim].pi;
    if (l <= i && i <= r)
    {
        del(a_temp[i]);
        add(q2[tim].x);
    }
    swap(a_temp[i], q2[tim].x);
}
int ans[N];
int main()
{
    n = read(), q = read();
    int block = pow(n, 0.666667);
    upd(i, 1, n)
    {
        a[i] = read(), a_temp[i] = getid(a[i]); belong[i] = (i-1) / block + 1;
    }
    int op, l1, r1;
    int q1_cnt = 0;
    upd(i, 1, q)
    {
        op = read();
        l1 = read(), r1 = read();
        if (op == 1)
        {
            q1[++q1_cnt].id = q1_cnt; q1[q1_cnt].l = l1; q1[q1_cnt].r = r1; q1[q1_cnt].t = q_cnt;
        }
        else
        {
            q_cnt++;
            q2[q_cnt].x = getid(r1); q2[q_cnt].pi = l1;
        }
    }
    sort(q1 + 1, q1 + q1_cnt + 1);
    upd(i, 1, q1_cnt)
    {
        while (t > q1[i].t)update(t--);
        while (t < q1[i].t)update(++t);
        while (l < q1[i].l)del(a_temp[l++]);
        while (l > q1[i].l)add(a_temp[--l]);
        while (r < q1[i].r)add(a_temp[++r]);
        while (r > q1[i].r)del(a_temp[r--]);
        for (int j = 1;; j++)
        {
            if (c[j] == 0) {
                ans[q1[i].id] = j;
                break;
            }
        }
    }
    upd(i, 1, q1_cnt)printf("%d\n", ans[i]);
    return 0;
}

原文地址:https://www.cnblogs.com/LORDXX/p/12512409.html

时间: 2024-11-08 22:12:23

Codeforces Round #466 (Div. 2) F - Machine Learning的相关文章

Codeforces Round #486 (Div. 3) F. Rain and Umbrellas

Codeforces Round #486 (Div. 3) F. Rain and Umbrellas 题目连接: http://codeforces.com/group/T0ITBvoeEx/contest/988/problem/E Description Polycarp lives on a coordinate line at the point x=0. He goes to his friend that lives at the point x=a. Polycarp can

Codeforces Round #501 (Div. 3) F. Bracket Substring

题目链接 Codeforces Round #501 (Div. 3) F. Bracket Substring 题解 官方题解 http://codeforces.com/blog/entry/60949 ....看不懂 设dp[i][j][l]表示前i位,左括号-右括号=j,匹配到l了 状态转移,枚举下一个要填的括号,用next数组求状态的l,分别转移 代码 #include<bits/stdc++.h> using namespace std; const int maxn = 207;

Codeforces Round #466 (Div. 2) Problem A - E

从这里开始 题目列表 小结 Problem A Points on the line Problem B Our Tanya is Crying Out Loud Problem C Phone Numbers Problem D Alena And The Heater Problem E Cashback Problem F Machine Learning (Lazy Tag) 小结 这场比赛和同学一起打.本来应该是很开心的事情,结果留下好多遗憾. 第一个遗憾是没能在20分钟内消灭A.B题

Codeforces Round #466 (Div. 2)

所有的题目都可以在CodeForces上查看 中间看起来有很多场比赛我没有写了 其实是因为有题目没改完 因为我不想改,所以就没有写了(大部分题目还是改完了的) 我还是觉得如果是打了的比赛就一场一场写比较好 要不然以后就写有难度的.比较好的题目?? 这场比赛时间真心良心(只是没吃饭) 状态也很好,考场上把\(ABCDE\)切了 \(F\)是自己弃疗了... 不管啦不管啦,进入正题了 题解 A.Points on the line 翻译: 给定一个长度为\(n\)的数组 问最少删去几个数之后使得最大

Codeforces Round #392 (Div. 2) F. Geometrical Progression

原题地址:http://codeforces.com/contest/758/problem/F F. Geometrical Progression time limit per test 4 seconds memory limit per test 256 megabytes input standard input output standard output For given n, l and r find the number of distinct geometrical pro

Codeforces Round #531 (Div. 3) F. Elongated Matrix(状压DP)

F. Elongated Matrix 题目链接:https://codeforces.com/contest/1102/problem/F 题意: 给出一个n*m的矩阵,现在可以随意交换任意的两行,最后从上到下,从左到右形成一个序列s1,s2.....snm,满足对于任意相邻的两个数,它们差的绝对值的最大值为k. 现在问怎么交换行与行,可以使得最后的这个k最大. 题解: 人生中第一道状压dp~其实还是参考了这篇博客:https://blog.csdn.net/CSDNjiangshan/art

Codeforces Round #548 (Div. 2) F splay(新坑) + 思维

https://codeforces.com/contest/1139/problem/F 题意 有m个人,n道菜,每道菜有\(p_i\),\(s_i\),\(b_i\),每个人有\(inc_j\),\(pref_j\),一个人可以买一道菜的条件是 1. \(p_i \leq inc_j \leq s_i\) 2. \(|b_i - pref_j| \leq inc_j-p_i\) ,问每个人分别能买多少道菜 题解 转化一下公式 \(p_i \leq inc_j \leq s_i\) 下面两个满

Codeforces Round #549 (Div. 2) F 数形结合 + 凸包(新坑)

https://codeforces.com/contest/1143/problem/F 题意 有n条形如\(y=x^2+bx+c\)的抛物线,问有多少条抛物线上方没有其他抛物线的交点 题解 \(y=x^2+bx+c=>y+x^2=bx+c\),转换为点\((x,y+x^2)\)在bx+c的直线上 两个点确定一条抛物线,同时也确定了一条直线 需要选择最上面那些点相邻确定的抛物线,所以维护一个上凸包即可 维护上凸包,当前点在前进方向左边需要向后退,cross(a,b)>=0 代码 #inclu

Codeforces Round #530 (Div. 2)F Cookies (树形dp+线段树)

题:https://codeforces.com/contest/1099/problem/F 题意:给定一个树,每个节点有俩个信息x和t,分别表示这个节点上的饼干个数和先手吃掉这个节点上一个饼干的的时间.然后有先手和后手俩个人. ?先手可以这么操作:在规定总时间T到达某个节点然后一定要返回根节点1,期间可以选择吃掉某些节点上的某些饼干(前提是保证剩下的时间能够回到根节点): ?后手可以这么操作:在先手到达的位置和这个位置的孩子之间的连边选择一条让先手吃得更多的边摧毁掉,也可以跳过这个过程: 问