QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#707723#8340. 3 SumGemini7X#RE 102ms13728kbC++143.2kb2024-11-03 17:14:112024-11-03 17:14:15

Judging History

你现在查看的是最新测评结果

  • [2024-11-03 17:14:15]
  • 评测
  • 测评结果:RE
  • 用时:102ms
  • 内存:13728kb
  • [2024-11-03 17:14:11]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
#define maxn 20010
typedef unsigned long long ull;
const ull MAX= 1e5,base=233;
const int B= 5;
int n,k;
int tmp[maxn],tmp2[maxn],cnt,cc;
ull bas[maxn];
struct node{
	ull a[1255],len;
	const node operator +(const node &b)const{
		node ret;
		ret.len=max(len,b.len);
		int res=0;
		for(int i=1;i<=ret.len;i++){
			ret.a[i]=b.a[i]+a[i]+res;
			res=ret.a[i]/MAX;
			ret.a[i]-=res*MAX;
		}
		if(res){
			ret.a[++ret.len]=res;
		}
		return ret;
	}
	pair<ull,ull> Make_Hash(){
		ull ret1=0,ret2=0;
		for(int i=1;i<=len;i++)ret1^=a[i]*bas[i],ret2+=a[i]*bas[i];
		return {ret1,ret2};
	}
	void read(){
		len=0;
		char c=getchar();
		while(c<'0'||c>'9')c=getchar();
		cnt=0;
		while(c>='0'&&c<='9'){
			tmp2[++cnt]=c-'0';
			c=getchar();
		}
		
		reverse(tmp2+1,tmp2+cnt+1);
		for(int i=1;i<=k+1;i++)tmp[i]=0;
		for(int i=0;i<cnt;i++)tmp[i%k+1]+=tmp2[i+1];
		
		do{
			tmp[1]+=tmp[k+1];
			tmp[k+1]=0;
			for(int i=1;i<=k;i++){
				tmp[i+1]+=tmp[i]/10;
				tmp[i]%=10;
			}
			cnt=k;
		}while(tmp[k+1]);
	//	cout<<tmp[1]<<endl;
		int s=0;
		for(int i=1;i<=k;i++)s+=tmp[i];
		if(!s){
			cc++;
	//		cout<<"???"<<endl;
		}
		if(s==9*k){
			//cout<<"???"<<endl;
			cc++;
			for(int i=1;i<=k;i++)tmp[i]=0;
		}
		len=0;
		ull t=1;
		for(int i=1;i<=k;i++,t*=10){
			if(i%B==1||B==1)len++,t=1;
			a[len]=(a[len]+tmp[i]*t);
		}
		return ;
	}
	void Cout(){
		for(int i=len;i;i--)cout<<a[i];
		cout<<endl;
	}
}b[2010],temp1,temp2;
inline int read(){
	int ret=0,flg=0;
	char c=getchar();
	while(c<'0'||c>'9')flg|=c=='-',c=getchar();
	while(c>='0'&&c<='9')ret=(ret<<3)+(ret<<1)+c-'0',c=getchar();
	return flg?-ret:ret;
}
inline void write(int x,bool flg){
	char a[21];
	if(!x)putchar('0');
	if(x<0)putchar('-'),x=-x;
	int cnt=0;
	while(x){
		a[++cnt]=x%10+'0';
		x/=10;
	}
	while(cnt)putchar(a[cnt--]);
	putchar(flg?'\n':' ');
	return ;
}
const int mod = 19260817;
int he[19260817],sz[maxn],nxt[maxn],tot;
pair<ull,ull> val[maxn];
void add(int x,pair<ull,ull> &u){
	for(int i=he[x];i;i=nxt[i]){
		if(val[i]==u){
			sz[i]++;
			return ;
		}
	}
	val[++tot]=u,sz[tot]=1,nxt[tot]=he[x],he[x]=tot;
	return ;
}
node o;
ull ten[21];
int main(){
	n=read(),k=read();
	bas[0]=1;
	for(int i=1;i<=1255;i++)bas[i]=bas[i-1]*base;
	o.len=(k+B-1)/B;
	ten[0]=1;
	for(int i=1;i<=B;i++)ten[i]=ten[i-1]*10;
	for(int i=1;i<o.len;i++)o.a[i]=MAX-1;
	if(k%B==0)o.a[o.len]=MAX-1;
	else o.a[o.len]=ten[k%B]-1;
	for(int i=1;i<=n;i++){
		b[i].read();
	//	b[i].Cout();
	}
	int ans=0;
	for(int i=1;i<=n;i++){
		temp1.len=o.len;
		for(int j=1;j<=o.len;j++)temp1.a[j]=o.a[j]-b[i].a[j];
		pair<ull,ull> t=temp1.Make_Hash();
	//	temp1.Cout();
		add((t.first*233+t.second)%mod,t);
		temp2=temp1+o;
	//	temp2.Cout();
		t=temp2.Make_Hash();
		add((t.first*233+t.second)%mod,t);
		for(int j=i;j<=n;j++){
			temp1=b[i]+b[j];
			t=temp1.Make_Hash();
			//cout<<"FUCK"<<endl;
			//temp1.Cout();
			int x=(t.first*233+t.second)%mod;
			for(int l=he[x];l;l=nxt[l]){
				if(val[l]==t)
					ans+=sz[l];
			}
		}
	//	cout<<ans<<endl;
	}
//	cout<<cc<<"ee"<<endl;
	ans+=cc*(cc+1)*(cc+2)/6;
	write(ans,1);
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 5792kb

input:

4 1
0
1
10
17

output:

3

result:

ok 1 number(s): "3"

Test #2:

score: 0
Accepted
time: 102ms
memory: 13728kb

input:

500 859
7118711592236878297922359501613604144948355616986970837340677671376753603836852811886591300370143151943368529129749813118476151865844255212534355441611481420938483178075143062691345257288242460282715389758789648541099090735875617822348551942134616963557723055980260082230902505269975518146286...

output:

0

result:

ok 1 number(s): "0"

Test #3:

score: -100
Runtime Error

input:

500 17336
11871159223687829792235950161360414494835561698697083734067767137675360383685281188659130037014315194336852912974981311847615186584425521253435544161148142093848317807514306269134525728824246028271538975878964854109909073587561782234855194213461696355772305598026008223090250526997551814628...

output:


result: