首页 > 其他分享 >CF1942F Farmer John's Favorite Function

CF1942F Farmer John's Favorite Function

时间:2024-04-04 22:56:29浏览次数:19  
标签:CF1942F Function include int res rep rd John define

题意简述

定义 \(f_i=\sqrt{f_{i-1}+a_i},f_0=0\)。

有 \(q\) 次操作,每次操作单点修改一个 \(a_i\) 的值,每次修改后求 \(\lfloor f_n\rfloor\) 的值。

\(n,q\le 2\times10^5,0\le a_i\le 10^{18}\)。

分析

发现这个 \(f_i\) 不是整数非常不利于我们做题,考虑将它变成整数。

令新的 \(f'_i=\lfloor f_i\rfloor\),这样的话 \(f'_{i+1}=\lfloor\sqrt{f'_i+a_{i+1}}\rfloor=\lfloor\sqrt{f_i-x+a_{i+1}}\rfloor(0\le x<1)\),但是我们发现这个 \(x\) 不会影响 \(f'_{i+1}=\lfloor\sqrt{f'_i+a_{i+1}}\rfloor\) 的取值,因为 \(f'_i+a_{i+1}\) 是整数,加上了 \(x\) 也只是改变了小数部分,对整数部分没有影响,所以有 \(\lfloor\sqrt{f'_i+a_{i+1}}\rfloor=\lfloor\sqrt{f_i+a_{i+1}}\rfloor\),故 \(f'_i=f_i\),\(f_i\) 就转化成整数了。

直觉发现根号这个东西数字缩小的非常快,通过手玩计算器可以发现 \(10^{18}\) 在取六次根号后下取整的值就变成了 \(1\),由此当 \(n\ge 6\) 时,\(a_1\) 的改变只会使 \(f_n\) 的值至多变化 \(1\)。保险起见我把这个阈值开到了 \(10\)。

考虑如何处理单点修改。将原序列分块,设一个块维护的区间为 \([l,r]\),块内维护 \(f_i\) 表示当 \(f_{l-1}=0\) 时,\(f_r\) 的取值;维护 \(g_i\) 表示当 \(f_{l-1}\ge g_i\) 时 \(f_i\) 的值将会增长 \(1\)(根据第二个结论,\(f_i\) 的值只会至多增长 \(1\))。

\(f_i\) 的值直接递推就好,求解 \(g_i\) 考虑逆推,假设最终的 \(f'_r=f_r+1\),\(f'_{r-1}\) 的值可以由 \(f_r^{'2}-a_r\) 求出,以此类推直到推出 \(f'_{l-1}\) 的值,求出的 \(f'_{l-1}\) 就是 \(g_i\) 的值了。当然你可以二分答案以多一个 log 的代价求出。

每次修改暴力计算块内信息即可,查询的话直接递推,设计算前 \(i-1\) 个块后的答案为 \(ans\),若 \(ans\ge g_i\),则 \(ans=f_i+1\),否则 \(ans=f_i\)。

时间复杂度 \(O(n\sqrt n)\),视 \(n,q\) 同阶。

注意分块时有可能块长小于阈值(此时第二个结论不成立),对于这种块暴力计算即可。

点击查看代码
#include<iostream>
#include<cstdio>
#include<cstring>
#include<string>
#include<algorithm>
#include<cmath>
#include<map>
#include<unordered_map>
#include<vector>
#include<queue>
#include<bitset>
#include<set>
#include<ctime>
#include<random>
#define x1 xx1
#define y1 yy1
#define IOS ios::sync_with_stdio(false)
#define ITIE cin.tie(0);
#define OTIE cout.tie(0);
#define PY puts("Yes")
#define PN puts("No")
#define PW puts("-1")
#define P__ puts("")
#define PU puts("--------------------")
#define popc __builtin_popcount
#define mp make_pair
#define fi first
#define se second
#define gc getchar
#define pc putchar
#define pb emplace_back
#define rep(a,b,c) for(int a=(b);a<=(c);++a)
#define per(a,b,c) for(int a=(b);a>=(c);--a)
#define reprange(a,b,c,d) for(int a=(b);a<=(c);a+=(d))
#define perrange(a,b,c,d) for(int a=(b);a>=(c);a-=(d))
#define graph(i,j,k,l) for(int i=k[j];i;i=l[i].nxt)
#define lowbit(x) (x&-x)
#define lson(x) (x<<1)
#define rson(x) (x<<1|1)
#define mem(x,y) memset(x,y,sizeof x)
//#define double long double
#define int long long
//#define int __int128
using namespace std;
typedef long long i64;
using pii=pair<int,int>;
bool greating(int x,int y){return x>y;}
bool greatingll(long long x,long long y){return x>y;}
inline int rd(){
	int x=0,f=1;char ch=getchar();
	while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();}
	while(ch>='0'&&ch<='9'){x=x*10+ch-48;ch=getchar();}return x*f;
}
inline void write(int x,char ch='\0'){
	if(x<0){x=-x;putchar('-');}
	int y=0;char z[40];
	while(x||!y){z[y++]=x%10+48;x/=10;}
	while(y--)putchar(z[y]);if(ch!='\0')putchar(ch);
}
bool Mbg;
const int maxn=2e5+5,maxm=805,inf=0x3f3f3f3f,B=300,BMIN=10;
const long long llinf=0x3f3f3f3f3f3f3f3f;
int n,Q,num,a[maxn];
int L[maxm],R[maxm],bel[maxn];
int f[maxm],g[maxm];
void upd(int x){
	int res=0;
	rep(i,L[x],R[x])res=floor(sqrtl(res+a[i]));
	f[x]=res;
	res=f[x]+1;
	per(i,R[x],L[x]){
		int _res=res*res-a[i];
		if(_res>inf)return g[x]=llinf,void();
		res=_res;
	}
	g[x]=res;
}
int qry(){
	int res=0;
	rep(i,1,num){
		if(R[i]-L[i]+1<=BMIN){
			rep(j,L[i],R[i])res=floor(sqrtl(res+a[j]));
		}else{
			if(res>=g[i])res=f[i]+1;
			else res=f[i];
		}
	}
	return res;
}
void solve_the_problem(){
	n=rd(),Q=rd(),num=(n+B-1)/B;rep(i,1,n)a[i]=rd();
	rep(i,1,num){
		L[i]=R[i-1]+1,R[i]=min(n,R[i-1]+B);
		rep(j,L[i],R[i])bel[j]=i;
		upd(i);
	}
	while(Q--){
		int x=rd(),y=rd();
		a[x]=y,upd(bel[x]);
		write(qry(),10);
	}
}
bool Med;
signed main(){
//	freopen(".in","r",stdin);freopen(".out","w",stdout);
//	fprintf(stderr,"%.3lfMB\n",(&Mbg-&Med)/1048576.0);
	int _=1;while(_--)solve_the_problem();
}
/*

*/

标签:CF1942F,Function,include,int,res,rep,rd,John,define
From: https://www.cnblogs.com/dcytrl/p/18115078

相关文章

  • flask 装饰器 AssertionError: View function mapping is overwriting an existing en
    1问题描述写了一个登陆认证装饰器,部分试图,只有用户登陆才能访问deflogin_wrapper(func):definner(*args,**kwargs):"""判断是否登陆若是进入视图函数否则重定向到登陆页面"""if......
  • CodeForces 1942F Farmer John's Favorite Function
    洛谷传送门CF传送门考虑一些复杂度带根号的做法。考虑分块,对于一个块,我们需要处理出一个数经过这个块会变成哪个数。以下假设块长\(\ge10\)(最后一个块块长可能\(<10\),暴力处理即可)。观察这个递推式\(f_i=\left\lfloor\sqrt{f_{i-1}+a_i}\right\rfloor\),发现对于一......
  • Anu Has a Function
    题目链接CodeforcesRound618(Div.1)A.AnuHasaFunction思路:我们把每个二进制位上的111看作是集合的不同的元素,二进制的位运算(按位与,按位或,按位异或)其实可以......
  • Javascript 变量类型 Object 和 Function 讲解
    在JavaScript中,Object 和 Function 是两种非常重要的类型,但它们之间也有一些关键的区别和联系。Object类型在JavaScript中,几乎所有的事物都是对象,包括原始值(如数字和字符串)的包装对象、数组、函数,以及使用字面量语法或构造函数创建的对象实例。对象是一个复合值,它可以包......
  • 【Azure Function & Application Insights】在Azure Function的日志中,发现DrainMode m
    问题描述ApplicaitonInsights收集了AzureFunction的日志,定期发现有”DrainModemodeenabledTraces“。DrainMode是什么意思呢? 问题解答排出模式(Drainmode) 属于FunctionApp 缩放机制中的一部分,当后台检测到FunctionApp请求量不再需要当前的instance时会停止对......
  • vue xxx.find is not a function;
    错误:1.后端获取数据集合,存到 vuex store 中和本地 window.localStorage;2.因为要解决刷新丢失问题在routeconfig中路由拦截重新 拿到本地数据window.localStorage 保存到store中;3.界面刷新报错:vuexxx.findisnotafunction分析:1.xxx类型确实不是数组;......
  • 【Azure Function & Application Insights】调用Function上传和下载文件,有时候遇见大
    问题描述在FunctionApp中配置了无代码模式的ApplicationInsights,但有时候发现,超过1MB的文件上传/下载操作成功。但是在ApplicationInsights中,却没有发现请求日志?这是一种什么情况呢? 问题解答ApplicationInsights 是具有采样功能的,当传入执行的速率超过指定的阈值时,Appl......
  • 当你遇到layer.alert is not a function怎么办
    下面我们来解决layer.alertisnotafunction的方法之一,下面来看一个GIS的例子,在登录之后,地图是加载出来的,当你点击区域定位是出现layer.alertisnotafunction。而我们的代码是没有bug,但是它还是报错。那是因为我们的url的地图出问题了,这是因为切图后的数据没有我们要的数......
  • std::function
    std::functional 是C++标准库中的一个模板类,它是对可调用对象的一种通用包装器。std::functional 允许你将任何可调用对象(包括函数、函数对象、lambda表达式、以及其他 std::functional 对象)当作一个统一的对象来处理。它通常与C++的算法库、容器库以及某些需要可调用对......
  • vuex.esm.js:135 Uncaught Error: [vuex] getters should be function but “getters.
    报错vuex.esm.js:135UncaughtError:[vuex]gettersshouldbefunctionbut"getters.mode"inmodule"userModule"is"dark".atassert(vuex.esm.js:135:1)原因:在使用vuex的moulds时index.js中已创建了一个vue实例newVuex.Store,在模块文件中又再创建了一个,导致报......