結果
問題 | No.2626 Similar But Different Name |
ユーザー | TairitsuMeow |
提出日時 | 2024-02-09 22:47:11 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,764 bytes |
コンパイル時間 | 1,663 ms |
コンパイル使用メモリ | 178,164 KB |
実行使用メモリ | 364,736 KB |
最終ジャッジ日時 | 2024-09-28 15:59:02 |
合計ジャッジ時間 | 26,512 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 113 ms
317,712 KB |
testcase_02 | AC | 110 ms
317,064 KB |
testcase_03 | AC | 112 ms
322,552 KB |
testcase_04 | WA | - |
testcase_05 | AC | 112 ms
326,304 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 111 ms
326,536 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 1,121 ms
355,108 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | AC | 1,118 ms
355,348 KB |
ソースコード
// Problem: No.2626 Similar But Different Name // Contest: yukicoder // URL: https://yukicoder.me/problems/no/2626 // Memory Limit: 512 MB // Time Limit: 3000 ms #include<bits/stdc++.h> #define debug(x) cerr<<(#x)<<" "<<(x)<<endl typedef long long ll; typedef long double ld; typedef unsigned long long ull; #define pii pair<ll,ll> #define rep(i,a,b) for(ll i=(a);i<=(b);++i) #define per(i,a,b) for(ll i=(a);i>=(b);--i) using namespace std; bool Mbe; ll read(){ ll 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-'0';ch=getchar();} return x*f; } void write(ll x){ if(x<0)putchar('-'),x=-x; if(x>9)write(x/10); putchar(x%10+'0'); } const ll N=4e6+9; const ull B=131; ll n,m,k,ans[N],r[N],f[N],g[N]; char s[N],t[N]; ull hs[N],ht[N],pw[N],hs2[N]; struct Comp{ ld x,y; Comp(ld a=0,ld b=0){x=a,y=b;} }; inline Comp operator+(const Comp&a,const Comp&b){return Comp(a.x+b.x,a.y+b.y);} inline Comp operator-(const Comp&a,const Comp&b){return Comp(a.x-b.x,a.y-b.y);} inline Comp operator*(const Comp&a,const Comp&b){return Comp(a.x*b.x-a.y*b.y,a.x*b.y+a.y*b.x);} Comp a[N],b[N]; const ld PI=acos(-1.0); void FFT(Comp*a,ll p,ll sgn){ rep(i,0,p-1){ if(i<r[i])swap(a[i],a[r[i]]); } for(ll mid=2;mid<=p;mid<<=1){ Comp wn=Comp(cos(2*PI/mid),sin(2*PI/mid)*sgn); ll R=mid>>1; for(ll j=0;j<p;j+=mid){ Comp w=Comp(1.0,0.0); rep(k,j,j+R-1){ Comp x=w*a[R+k]; a[R+k]=a[k]-x,a[k]=a[k]+x; w=w*wn; } } } } void MUL(ll*f,ll*g,ll n,ll m){ ll c=0,p=1; while(p<=n+m)p*=2,c++; rep(i,0,p-1)r[i]=(r[i>>1]>>1)|((i&1)?(p>>1):0); rep(i,0,n-1)a[i].x=f[i],a[i].y=0; rep(i,n,p-1)a[i].x=0,a[i].y=0; rep(i,0,m-1)b[i].x=g[i],b[i].y=0; rep(i,m,p-1)b[i].x=0,b[i].y=0; FFT(a,p,1); FFT(b,p,1); rep(i,0,p-1)a[i]=a[i]*b[i]; FFT(a,p,-1); rep(i,0,n+m-1)f[i]=(ll)(a[i].x/p+0.49); } ull Hs(ll l,ll r){ return hs[r]-hs[l-1]*pw[r-l+1]; } ull Hs2(ll l,ll r){ return hs2[r]-hs2[l-1]*pw[r-l+1]; } map<ull,ll>mp; bool Med; int main(){ cerr<<fabs(&Med-&Mbe)/1048576.0<<"MB\n"; n=read(),m=read(),k=read(); scanf("%s%s",s,t); rep(i,0,n-1)f[i]=islower(s[i]); rep(i,0,m-1)g[i]=islower(t[i]); reverse(g,g+m); MUL(f,g,n,m); rep(i,m-1,n-1)ans[i]+=f[i]; memset(f,0,sizeof(f)); memset(g,0,sizeof(g)); rep(i,0,n-1)f[i]=isupper(s[i]); rep(i,0,m-1)g[i]=isupper(t[i]); reverse(g,g+m); MUL(f,g,n,m); pw[0]=1; rep(i,1,n)pw[i]=pw[i-1]*B; rep(i,m-1,n-1)ans[i]+=f[i]; hs[0]=tolower(s[0]); rep(i,1,n-1)hs[i]=hs[i-1]*B+tolower(s[i]); hs2[0]=(islower(s[0])); rep(i,1,n-1)hs2[i]=hs2[i-1]*B+(islower(s[i])); ht[0]=tolower(t[0]); rep(i,1,m-1)ht[i]=ht[i-1]*B+tolower(t[i]); rep(i,m-1,n-1){ if(Hs(i-m+1,i)==ht[m-1]&&ans[i]!=m&&ans[i]+k>=m)mp[Hs2(i-m+1,i)]++; } write(mp.size()); return 0; }