QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#757253#7618. Pattern SearchinksamuraiWA 0ms3648kbC++231.3kb2024-11-17 03:07:412024-11-17 03:07:42

Judging History

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

  • [2024-11-17 03:07:42]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3648kb
  • [2024-11-17 03:07:41]
  • 提交

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 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...);}

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

void slv(){
	string s,t;
	cin>>s>>t;
	const int n=sz(s);
	const int m=sz(t);

	auto cnt_s=get(s);
	auto cnt_t=get(t);
	int si=26;

	rep(i,si){
		if(cnt_s[i]<cnt_t[i]){
			print(0);
			return;
		}
	}

	int ans=0;
	rng(pat,1,m+1){
		int take=0;
		int k=m/pat;
		int pok=1;
		rep(i,si){
			int x=cnt_t[i]/k,c=cnt_t[i]%k;
			if(x<c) pok=0;
			take+=x;
		}
		// if(pat==2) print(take,k);
		if(take==pat){
			int now=1e9;
			rep(i,si){
				if(!cnt_t[i]) continue;
				int x=cnt_t[i]/k,c=cnt_t[i]%k;
				if(!x) now=0;
				else now=min(now,(cnt_s[i]-cnt_t[i])/x);
			}
			now+=1;
			ans=max(ans,now);
		}
	}
	print(ans);
}

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

详细

Test #1:

score: 100
Accepted
time: 0ms
memory: 3612kb

input:

2
bajkaaall aal
abca cba

output:

2 
1 

result:

ok 2 number(s): "2 1"

Test #2:

score: -100
Wrong Answer
time: 0ms
memory: 3648kb

input:

16
a a
a b
b a
aa a
ab aa
ab b
ab c
aaz az
abcde edcba
aaaaaaaaaaaabbb aaaaaaaaabb
aaaaaazz az
aaaaaaaaaz zzzzz
gggggggggggggggggggge ggggeeee
hyphyphyphyphyphyphyphyphyphyphyphyp eeeeeeeeee
hyphyphyphyphyphyphyphyphyphyphyphype eeteeteeteet
aaaabbbbbbcccccccc aaabbbbbcccccc

output:

1 
0 
0 
2 
0 
1 
0 
1 
1 
1 
2 
0 
0 
0 
0 
2 

result:

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