QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#760473#7618. Pattern SearchinksamuraiWA 0ms3500kbC++232.0kb2024-11-18 17:05:212024-11-18 17:05:23

Judging History

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

  • [2024-11-18 17:05:23]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3500kb
  • [2024-11-18 17:05:21]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i=0;i<n;i++)
#define per(i,n) for(int i=n-1;i>=0;i--)
#define rng(i,c,n) for(int i=c;i<n;i++)
#define fi first
#define se second
#define pb push_back
#define sz(a) (int)a.size()
#define all(a) a.begin(),a.end()
#define vec(...) vector<__VA_ARGS__>
typedef long long ll;
typedef vector<int> vi;
typedef pair<int,int> pii;
void print(){cout<<'\n';}
template<class h,class...t>
void print(const h&v,const t&...u){cout<<v<<' ',print(u...);}

const int SI=26;

vi get(string s){
	vi cnt(SI);
	rep(i,sz(s)) cnt[s[i]-'a']+=1;
	return cnt;
}

void slv(){
	string s,t;
	cin>>s>>t;
	int n=sz(s),m=sz(t);
	vi cnts=get(s),cntt=get(t);
	rep(i,SI){
		if(cnts[i]<cntt[i]){
			print(0);
			return;
		}
	}
	vi can(m+1,1);
	vec(vec(pii)) cover(m+1,vec(pii)(SI));
	rng(pat,1,m+1){
		int k=m/pat;
		int lo=0,hi=0;
		rep(i,SI){
			if(!cntt[i]) continue;
			// x * k >= cntt[i] - x * k
			int c=cntt[i];
			int x=(c+2*k-1)/(2*k);
			int y=c/k;
			if(y<c-y*k) can[pat]=0;
			assert(x*k>=cntt[i]-x*k);
			lo+=x;
			hi+=y;
			cover[pat][i]={x,y};
		}
		if(!(lo<=pat and pat<=hi)) can[pat]=0;
	}
	auto af=[&](int x){
		rng(pat,1,m+1){
			if(!can[pat]) continue;
			int pok=1;
			rep(i,SI){
				if(!cntt[i]) continue;
				if(cnts[i]-cntt[i]<x){
					pok=0;
					break;
				}
				// (cnts[i] - cntt[i]) / p >= x
				// (cnts[i] - cntt[i]) / x >= p
				int p=(cnts[i]-cntt[i])/x;
				while((cnts[i]-cntt[i])/p<x) p+=1;
				// if(pat==m) print(p,i);
				// if(p>cover[pat][i].se){
				// 	pok=0;
				// 	break;
				// }
				if(p<cover[pat][i].fi){
					pok=0;
					break;
				}
			}
			if(pok) return 1;
		}
		return 0;
	};
	print(af(1));
	// int l=1,r=n;
	// int opt=0;
	// while(l<=r){
	// 	int _m=(l+r)/2;
	// 	if(af(_m)) opt=_m,l=_m+1;
	// 	else r=_m-1;
	// }
	// opt+=1;
	// print(opt);
}

signed main(){
	ios::sync_with_stdio(0),cin.tie(0);
	int t;
	cin>>t;
	rep(cs,t){
		slv();
	}
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 3500kb

input:

2
bajkaaall aal
abca cba

output:

1 
0 

result:

wrong answer 1st numbers differ - expected: '2', found: '1'