QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#707685 | #8340. 3 Sum | Gemini7X# | WA | 290ms | 15792kb | C++14 | 3.2kb | 2024-11-03 17:03:05 | 2024-11-03 17:03:06 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
#define maxn 20010
typedef unsigned long long ull;
const ull MAX= 1e16,base=233;
const int B= 16;
int n,k;
int tmp[maxn],tmp2[maxn],cnt,cc;
ull bas[maxn];
struct node{
ull a[1251],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=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: 5716kb
input:
4 1 0 1 10 17
output:
3
result:
ok 1 number(s): "3"
Test #2:
score: 0
Accepted
time: 29ms
memory: 15724kb
input:
500 859 7118711592236878297922359501613604144948355616986970837340677671376753603836852811886591300370143151943368529129749813118476151865844255212534355441611481420938483178075143062691345257288242460282715389758789648541099090735875617822348551942134616963557723055980260082230902505269975518146286...
output:
0
result:
ok 1 number(s): "0"
Test #3:
score: 0
Accepted
time: 290ms
memory: 15792kb
input:
500 17336 11871159223687829792235950161360414494835561698697083734067767137675360383685281188659130037014315194336852912974981311847615186584425521253435544161148142093848317807514306269134525728824246028271538975878964854109909073587561782234855194213461696355772305598026008223090250526997551814628...
output:
0
result:
ok 1 number(s): "0"
Test #4:
score: 0
Accepted
time: 62ms
memory: 12060kb
input:
500 1 751324443898124078584847834484321089092662321556147445230263526014359393841194947303407593948729802551881289193716611867931891257925091769456350249725997883453296895094445731130479434019358742162771547784250401546380268386074363779242500860317042151185119666027858022664683818314351285215150806...
output:
2327631
result:
ok 1 number(s): "2327631"
Test #5:
score: 0
Accepted
time: 53ms
memory: 12652kb
input:
500 2 408542968136435277974575411503179002415404345446801430469044749372949272333801248935236224652806667129749035002588943020176263162139056819871274824302889304493205266143688886696157147111754418731401856424401766968832165255416237731963027205324149660112574729610391396555581935236134531799950318...
output:
212002
result:
ok 1 number(s): "212002"
Test #6:
score: -100
Wrong Answer
time: 204ms
memory: 13464kb
input:
500 11500 75411775796562109942642493394321873284995260953010112281856775261847503626737348402159485133662757032091519863427156582689971229143089317472838196453888261138079171290535429921921548971897026706656838415620603757605079012541561774699628665865662183868374645956694140356716037674688084770628...
output:
48
result:
wrong answer 1st numbers differ - expected: '7675', found: '48'