#include <bits/stdc++.h>
using namespace std;
#define ll long long
const int N=2e3+5, mod=1e9+7;
int query(string str);
mt19937 rng(time(NULL));
string guess(int n, int s) {
vector<char> v;
for(int i=0;i<s - 1;i++) {
v.push_back(char('a' + i + 1));
}
shuffle(v.begin() , v.end() , rng);
string res;
for(int i=0;i<n;i++) {
res = res + 'a';
}
int tr = query(res);
for(int i=0;i<n;i++) {
for(int j=0;j<s - 1;j++) {
res[i] = v[j];
int tmp = query(res);
if(tmp == tr + 1) {
tr++;
break;
}
else if(j == s - 2) {
res[i] = 'a';
break;
}
}
}
return res;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
356 KB |
Returned early from guess() after 170 queries. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
1 ms |
436 KB |
Execution killed with signal 13 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
55 ms |
344 KB |
Returned early from guess() after 9755 queries. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
356 KB |
Returned early from guess() after 170 queries. |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
356 KB |
Returned early from guess() after 170 queries. |
2 |
Halted |
0 ms |
0 KB |
- |