結果

問題 No.2626 Similar But Different Name
ユーザー kmjpkmjp
提出日時 2024-02-09 23:05:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,744 bytes
コンパイル時間 2,078 ms
コンパイル使用メモリ 208,904 KB
実行使用メモリ 18,976 KB
最終ジャッジ日時 2024-09-28 16:17:58
合計ジャッジ時間 7,691 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,640 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 1 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 113 ms
6,816 KB
testcase_08 AC 135 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 77 ms
6,816 KB
testcase_11 AC 77 ms
6,820 KB
testcase_12 AC 81 ms
6,816 KB
testcase_13 AC 75 ms
6,820 KB
testcase_14 AC 37 ms
6,816 KB
testcase_15 AC 41 ms
6,816 KB
testcase_16 AC 34 ms
6,820 KB
testcase_17 AC 34 ms
6,820 KB
testcase_18 AC 30 ms
18,976 KB
testcase_19 TLE -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define FORR2(x,y,arr) for(auto& [x,y]:arr)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;}
template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;}
//-------------------------------------------------------

int N,M,K;
string S,T,SA,SB,TA,TB;
using VT = string;

bitset<512000> SC,TC,mask;

vector<int> Zalgo(VT s) {
	vector<int> v(1,s.size());
	for(int i=1,l=-1,r=-1;i<s.size();i++) {
		if(i<=r && v[i-l]<r-i+1) v.push_back(v[i-l]);
		else {
			l=i; r=(i>r)?i:(r+1);
			while(r<s.size() && s[r-i]==s[r]) r++;
			v.push_back((r--)-l);
		}
	}
	v.push_back(0);
	return v;
}

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N>>M>>K>>S>>T;
	FORR(c,S) {
		if(c>='a'&&c<='z') {
			SA+=c;
			SB+="a";
		}
		else {
			SA+=c-'A'+'a';
			SB+="A";
		}
	}
	FORR(c,T) {
		if(c>='a'&&c<='z') {
			TA+=c;
			TB+="a";
		}
		else {
			TA+=c-'A'+'a';
			TB+="A";
		}
	}
	
	TA+="*"+SA;
	T+="*"+S;
	FOR(i,N) SC[i]=SB[i]=='a';
	FOR(i,M) {
		TC[i]=TB[i]=='a';
		mask[i]=1;
	}
	
	
	auto ZA=Zalgo(TA);
	auto Z=Zalgo(T);
	int ret=0;
	FOR(i,N-M+1) if(Z[i+1+M]<M&&ZA[i+1+M]==M) {
		auto TT=TC;
		TT^=SC>>i;
		TT&=mask;
		if(TT.count()<=K) ret++;
	}
	cout<<ret<<endl;
	
	
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0