QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#129290 | #5499. Aliases | Lain | WA | 55ms | 4988kb | C++17 | 1.2kb | 2023-07-22 14:06:04 | 2023-07-22 14:06:06 |
Judging History
answer
#include "bits/stdc++.h"
using namespace std;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int tt;
cin >> tt;
while(tt--) {
int n;
cin >> n;
vector<string> first(n), last(n);
for (int i = 0; i < n; i++) cin >> first[i] >> last[i];
int ans = 6;
int A = 0, B = 0, C = 6;
for (int a = 0; a <= 6; a++) {
for (int b = 0; b <= 6; b++) {
if (a+b > 6) break;
map<int64_t, int> m;
int max_set = 0;
for (int i = 0; i < n; i++) {
int64_t hash = 0, pw = 1;
for (int j = 0; j < min(a, (int)first[i].size()); j++) hash += pw*(first[i][j] - 'a'), pw *= 26;
for (int j = 0; j < min(b, (int)last[i].size()); j++) hash += pw*(last[i][j] - 'a'), pw *= 26;
m[hash]++;
max_set = max(m[hash], max_set);
}
int c = 0, pw = 1;
while(pw < max_set) {
c++;
pw *= 10;
}
if (ans > a+b+c) {
ans = a+b+c;
A = a, B = b, C = c;
}
}
}
cout << A << " " << B << " " << C << '\n';
}
}
// 10^c is the number of things i can disambiguate with numbers
// Largest c is 6. a+b+c <= 6
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 1ms
memory: 3588kb
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: 55ms
memory: 4988kb
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 0 0 0 5 0 1 1 1 0 2 1 1 1 2 0 1
result:
wrong answer Loginy nie moga byc puste! (test case 1)