답안 #859831

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
859831 2023-10-10T18:35:50 Z Andrei_Calota Password (RMI18_password) C++14
10 / 100
61 ms 528 KB
#include <bits/stdc++.h>

using namespace std;
const int N_MAX = 5e3;
const int SIGMA_MAX = 26;

/**int query (string candidate) {
   cout << candidate << "\n";
   int ret; cin >> ret;
   return ret;
}**/

int query (string str);

string getCopy (int letter, int f) {
    string ret = "";
    for (int i = 0; i < f; i ++)
       ret = ret + char (letter + 'a');
    return ret;
}


int freq[SIGMA_MAX];
string guess (int n, int s) {

    int steps = 0;

    int N = n, SIGMA = s;
    string aux;
    for (int letter = 0; letter < SIGMA; letter ++) {
       aux = getCopy (letter, N);
       freq[letter] = query (aux);
       steps ++;
    }

    string done = "";
    for (int pos = N - 1; pos >= 0; pos --) {
       int left = 0, right = 1;
       while (right < SIGMA) {
          if (freq[left] == 0) {
            left ++;
            right = max (right, left + 1);
            continue;
          }
          if (freq[right] == 0) {
            right ++;
            continue;
          }

          aux = getCopy (left, freq[left]);
          aux = aux + char (right + 'a');
          aux = aux + done;

          int len = query (aux);
          steps ++;
          assert (steps <= 50000);

          if (len != N && len == freq[left])
            right ++;
          else if (len != N){
            left = right;
            right ++;
          }
          else
            return aux;
       }
       done = char (left + 'a') + done;
       ///cout << "pana acum done este egal cu " << done << "\n";
       freq[left] --;
    }

    ///cout << "am termina in " << steps << "\n";

    return done;

}
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 344 KB Guessed the password with 121 queries.
2 Correct 1 ms 344 KB Guessed the password with 277 queries.
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 344 KB Returned early from guess() after 33 queries.
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 61 ms 528 KB Returned early from guess() after 7262 queries.
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 344 KB Guessed the password with 121 queries.
2 Correct 1 ms 344 KB Guessed the password with 277 queries.
3 Incorrect 0 ms 344 KB Returned early from guess() after 33 queries.
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 344 KB Guessed the password with 121 queries.
2 Correct 1 ms 344 KB Guessed the password with 277 queries.
3 Incorrect 0 ms 344 KB Returned early from guess() after 33 queries.
4 Halted 0 ms 0 KB -