QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#226086#7618. Pattern Searchucup-team1001#WA 0ms3648kbC++201.9kb2023-10-25 15:46:272023-10-25 15:46:27

Judging History

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

  • [2023-10-25 15:46:27]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3648kb
  • [2023-10-25 15:46:27]
  • 提交

answer

#include<bits/stdc++.h>

using namespace std;
#define IOS ios::sync_with_stdio(false); cin.tie(0); cout.tie(0);


using ll = long long;
#define int ll
#define endl "\n"


#define pii pair<int,int>
#define ary(i) array<ll,(i)>
#define all(x) x.begin(),x.end()
const int maxn = 2e5 + 7;
const int inf = numeric_limits<int>::max();
const int inf2 = 0x3f3f3f3f3f3f3f3;
const int inff = numeric_limits<int>::min();
const int mod = 1e9 + 7;


void solve() {
    string a, b;
    cin >> a >> b;
    vector<int> an(26, 0);
    vector<int> bn(26, 0);
    vector<int> cn(26, 0);
    for (auto i: a) {
        an[i - 'a']++;
    }
    for (auto i: b) {
        bn[i - 'a']++;
    }
    int maxa = inff;
    for (int i = 0; i < 26; i++) {
        if (bn[i] > an[i]) {
            cout << 0 << endl;
            return;
        }
        maxa = max(maxa, bn[i]);
        cn[i] = bn[i];
    }
    bool flag = true;
    int g = 0;
    for (int i = 0; i < 26; i++) {
        if (bn[i]) {
            if (!g) {
                g = bn[i];
            } else {
                g = __gcd(g, bn[i]);
            }
        }
    }
    if (g != 1) {
        int ma = inf;
        for (int i = 0; i < 26; i++) {
            bn[i] /= g;
        }
        for (int i = 0; i < 26; i++) {
            if (bn[i]) {
                an[i] /= bn[i];
                ma = max(0ll, min(ma, an[i] - cn[i]/bn[i] + 1));
            }
        }
        cout << ma << endl;
        return;

    }

    int len = 1;
    while (1) {
        for (int i = 0; i < 26; i++) {
            if ((bn[i] / 2 + bn[i] % 2) + cn[i] > an[i]) {
                cout << len << endl;
                return;
            }
            cn[i] += (bn[i] / 2 + bn[i] % 2);
        }
        len++;
    }
//    cout<<len<<endl;


}

#undef int


int main() {
    IOS
    int n;
    cin >> n;
//    n = 1;
    while (n--) {
        solve();
    }

}

詳細信息

Test #1:

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

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
1

result:

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