QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#708355 | #9225. Fibonacci Fusion | ccccccyd | WA | 107ms | 328444kb | C++14 | 1.7kb | 2024-11-03 21:42:56 | 2024-11-03 21:42:57 |
Judging History
answer
#include<bits/stdc++.h>
#define ll long long
#define rep(i,l,r) for(int i(l),i##end(r);i<=i##end;++i)
#define per(i,r,l) for(int i(r),i##end(l);i>=i##end;--i)
using namespace std;
const int N=2e5+10,M=1e7;
const ll P0=1e17,mod1=1e9+7,mod2=1e9+9;
struct big{
ll d,a,h1,h2;//v=a*10^d
friend big operator+(big x,big y){
//保证有 x<y<2x
big z={y.d,((x.d==y.d)?x.a:x.a/10)+y.a,(x.h1+y.h1)%mod1,(x.h2+y.h2)%mod2};
if(z.a>=P0) z.a/=10,z.d++;
return z;
}
void ins(int x){//加一位 x
a=a*10+x,h1=(h1*10+x)%mod1,h2=(h2*10+x)%mod2;
if(a>=P0) a/=10,d++;
}
}f[M],a[N];
int n; ll ans; char s[M]; unordered_map<ll,int> mp;
int inline cnt(big x,big y){
return mp[(x.h1<y.h1?x.h1-y.h1+mod1:x.h1-y.h1)*mod2+(x.h2<y.h2?x.h2-y.h2+mod2:x.h2-y.h2)];
}
signed main(){
f[0]=f[1]={0,1,1,1};//f[0]=f[1]=1=1*10^0
rep(i,2,M-1){
f[i]=f[i-2]+f[i-1];
}
cerr<<1.0*clock()/CLOCKS_PER_SEC<<"s\n";
scanf("%d",&n);
rep(i,1,n){
scanf("%s",s+1);
int len=strlen(s+1);
rep(k,1,len) a[i].ins(s[k]-'0');
}
cerr<<1.0*clock()/CLOCKS_PER_SEC<<"s\n";
sort(a+1,a+n+1,[](big i,big j){
return i.d!=j.d?i.d<j.d:i.a<j.a;
});
cerr<<1.0*clock()/CLOCKS_PER_SEC<<"s\n";
// if(n==200000&&a[1].d>1) return 0;
int k=2;//f[0]=f[1]<2<=ai+aj
rep(i,1,n){
while(f[k].d<a[i].d) k++;
rep(j,k,min(M-1,k+60)){
ans+=cnt(f[j],a[i]);
}mp[a[i].h1*mod2+a[i].h2]++;
// cerr<<1.0*clock()/CLOCKS_PER_SEC<<"s\n";
}
cout<<ans;
cerr<<1.0*clock()/CLOCKS_PER_SEC<<"s\n";
return 0;
}//g++ -g my.cpp -o my -std=c++14 -O2 -Wall -Wextra -Wshadow -Wconversion
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 47ms
memory: 318524kb
input:
6 50 8 8 5 72 354224848179261915070
output:
4
result:
ok 1 number(s): "4"
Test #2:
score: 0
Accepted
time: 60ms
memory: 317932kb
input:
28 200878223506436882933619847964496455022155117513398820563747455993172799881403389571477889821109288771413214004090719097929400406252135763028179112130390003528046316900603668569910008417315162907579003880220844686222148696041857432602133894827753998572080650383305777912447151917272483538029469449...
output:
27
result:
ok 1 number(s): "27"
Test #3:
score: -100
Wrong Answer
time: 107ms
memory: 328444kb
input:
5187 2640352926124261912741724778991366987330659389621881876017670644497364093930668042530271338851702874394631009332660937266680740235862107353443518003194307853104942996827176097428402408674756368623972812842571069642405111849826172879369776309763468485788964245903781380419155348915131587410703749...
output:
6072
result:
wrong answer 1st numbers differ - expected: '6073', found: '6072'