欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

CodePlus7 神秘序列

程序员文章站 2022-07-12 14:11:26
...

CodePlus7 神秘序列

没错,就找到这样一种方法之后二分+模拟即可。
卡时间可以去OEISOEIS搜一波发现n2n+kπ\frac {n^2}{n+k}\sim\pi
然后就可以O(n)O(n)过掉这题了。

AC Code\mathcal AC \ Code

#include<bits/stdc++.h>
#define LL long long
#define Pi 3.1415926535897932384626433832795
using namespace std;

LL K,a[3333333];
int calc(LL n){
	LL t = n + K;
	memset(a,0,(n+1)*8);
	for(int i=1;i<=n && t;i++){
		LL p = (t-1)%(i+1);	
		a[i] = i - p;
		t -= (t+i) / (i+1);
	}
	return t;
}

char cb[1<<22],*cs=cb;

template<class T>void print(T a){
	static int q[22]={};
	for(;a;a/=10) q[++q[0]] = a%10;
	if(!q[0]) putchar('0');
	for(;q[0];) putchar(q[q[0]--]+'0');
	putchar('\n');
}

int main(){

	freopen("p3.in","r",stdin);
	freopen("p3.out","w",stdout);
	scanf("%lld",&K);
	int N = round((Pi + sqrt(Pi * Pi + 4.0 * K * Pi)) / 2);
	int L = max(1,N-4) , R = N+4 , mid;
	for(;L<R;){
		int mid = (L+R)>>1;
		int t =calc(mid);
		if(t) L = mid + 1;
		else if(a[mid]){
			L = mid;
			break;
		}
		else R = mid - 1;
	}
	calc(L);
	print(L);
	for(int i=1;i<=L;i++)
		print(a[i]);
}
相关标签: 构造