QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#398121 | #6516. New but Nostalgic Problem | iwew | WA | 18ms | 3864kb | C++20 | 1.7kb | 2024-04-24 22:30:43 | 2024-04-24 22:30:45 |
Judging History
answer
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N = 1e6 + 10;
int n, K, idx;
struct Node {
int cnt, ch[26];
}tr[N];
void insert(string s) {
int cur = 0;
for(auto c : s) {
if(!tr[cur].ch[c - 'a']) {
tr[cur].ch[c - 'a'] = ++ idx;
}
tr[tr[cur].ch[c - 'a']].cnt += 1;
cur = tr[cur].ch[c - 'a'];
}
}
void query(string &ans, int K) {
tr[0].cnt = n;
int cur = 0;
while(true) {
int cnt = 0;
for(int i = 0; i < 26; i ++ ) {
if(tr[cur].ch[i]) {
cnt ++ ;
}
}
bool ok = false;
for(int i = 0; i < 26; i ++ ) {
if(tr[cur].ch[i] && tr[tr[cur].ch[i]].cnt >= 2) {
if(tr[tr[cur].ch[i]].cnt + cnt - 1 >= K) {
ans += (char)(i + 'a');
K -= cnt - 1, cur = tr[cur].ch[i];
ok = true;
break;
} else {
cnt = cnt - 1 + tr[tr[cur].ch[i]].cnt;
}
}
}
if(!ok) break;
}
}
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
int T;
cin >> T;
while(T -- ) {
cin >> n >> K;
for(int i = 0; i < n; i ++ ) {
string s;
cin >> s;
insert(s);
}
string ans;
query(ans, K);
if(!ans.empty()) cout << ans << '\n';
else cout << "EMPTY" << '\n';
for(int i = 0; i <= idx; i ++ ) {
tr[i].cnt = 0;
for(int j = 0; j < 26; j ++ ) {
tr[i].ch[j] = 0;
}
}
idx = 0;
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3552kb
input:
2 5 3 gdcpc gdcpcpcp suasua suas sususua 3 3 a b c
output:
gdcpc EMPTY
result:
ok 2 lines
Test #2:
score: -100
Wrong Answer
time: 18ms
memory: 3864kb
input:
20000 5 3 apveofpr irdbqk rnionnjjrk wrpihlsw ofylfsriof 5 4 iiltghqg kybhogptqf jfnmqxzrdq rpztcluq tzmnrcjae 5 5 ysp vujmkkcutl ksawqeiiaf waukilaq wmlsutlued 5 3 pikybt yiqmqvtjeq tyrsoihf vnvjrxpus cuubpacubb 5 2 rihuvikhg twrsuoervz ukiekoohw eysqgndpf sxswpeqtaf 5 5 vxzhicbp nvtdbgqal jilppvpt...
output:
EMPTY EMPTY w EMPTY EMPTY EMPTY EMPTY EMPTY EMPTY EMPTY EMPTY EMPTY t EMPTY EMPTY m EMPTY a EMPTY EMPTY EMPTY EMPTY EMPTY e r EMPTY o v EMPTY w EMPTY EMPTY t EMPTY s z v EMPTY EMPTY EMPTY EMPTY EMPTY EMPTY w EMPTY EMPTY EMPTY EMPTY EMPTY EMPTY EMPTY EMPTY w u EMPTY EMPTY EMPTY EMPTY EMPTY EMPTY EMPT...
result:
wrong answer 13th lines differ - expected: 'EMPTY', found: 't'