QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#225201#5499. AliasesGawor270WA 11ms4272kbC++141.9kb2023-10-24 05:27:212023-10-24 05:27:21

Judging History

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

  • [2023-10-24 05:27:21]
  • 评测
  • 测评结果:WA
  • 用时:11ms
  • 内存:4272kb
  • [2023-10-24 05:27:21]
  • 提交

answer

#include <bits/stdc++.h>

using namespace std;

#define debug(x) cout << "[" <<  #x << " " << x << "] ";

#define ar array
#define ll long long
#define ld long double
#define sz(x) ((int)x.size())
#define all(a) (a).begin(), (a).end()

typedef vector<int> vi;
typedef pair<int,int> pi;

const int MAX_N = 1e5 + 5;
const ll MOD = 1e9 + 7;
const ll INF = 1e9;
const ld EPS = 1e-9;


vector<string> firstname;
vector<string> lastname;
int n;
int qexp10(int x){
    int res = 1;
    int a = 10;
    while(x){
        if(x&1)res *= a;
        a *= a;
        x >>= 1; 
    }
    return res;
}

int ispos(int a, int b){
    map<string,int> count;
    int maxim = 0;
    for(int i=0; i<firstname.size(); i++){
        int l1 = firstname[i].length();
        int l2 = lastname[i].length();
        string res = firstname[i].substr(0,min(l1,a)) + lastname[i].substr(0,min(l2,b));
        count[res]++;
        maxim = max(maxim,count[res]);
    }
    int c = (int)ceil(log10(maxim)); 
    return c;

}

void solve() {
    cin >> n;
    firstname.resize(n), lastname.resize(n);
    int maxf =0, maxl = 0;
    for(int i=0; i<n; i++){
        cin >> firstname[i] >> lastname[i];
        maxf = max((int)firstname[i].length(), maxf);
        maxl = max((int)lastname[i].length(), maxl);
    }

    int minim = 1e9;
    int a,b,c;
    for(int i=0; i<=maxf; i++){
        for(int j=0; j<=maxl; j++){
                int k = ispos(a,b);
                if(i + j + k < minim){
                    minim = i + j + k;
                    a = i, b= j, c = k;
                }
        }
    }

    cout << a << " " << b << " " << c;
}


int main() {
    ios_base::sync_with_stdio(0);
    cin.tie(0); cout.tie(0);
    int tc = 1;
    cin >> tc;
    for (int t = 1; t <= tc; t++) {
        // cout << "Case #" << t << ": ";
        solve();
    }
}

詳細信息

Test #1:

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

input:

1
11
sven eriksson
erik svensson
sven svensson
erik eriksson
bjorn eriksson
bjorn svensson
bjorn bjornsson
erik bjornsson
sven bjornsson
thor odinsson
odin thorsson

output:

0 0 2

result:

ok correct! (1 test case)

Test #2:

score: -100
Wrong Answer
time: 11ms
memory: 4272kb

input:

6
1
g u
14643
gj ek
hc bi
hi ke
ab ij
hk cj
ha bi
ag fe
eb ej
hd ei
bf gj
ke dd
ib jd
id jb
gd ei
cj bi
bi hg
ic dh
ke gk
af eg
fg dd
fe fa
be ge
hf kj
ih ci
gg jf
ed dd
eh gi
cc kd
ka fd
af gb
ka fe
ja ed
bc hi
eg cf
gg ff
kf gf
ii ch
hh ec
ei ec
cd gc
bh hb
dd id
ce bk
ib ic
bf kk
gh cd
hb he
if g...

output:

0 0 00 0 50 0 30 0 40 0 40 0 4

result:

wrong output format Expected integer, but "00" found (test case 1)