# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
755872 | 2023-06-10T17:06:21 Z | MohamedFaresNebili | Password (RMI18_password) | C++14 | 180 ms | 424 KB |
#include <bits/stdc++.h> #include <fstream> #include <iostream> #include <sstream> #include <string> #include <stdlib.h> #include <assert.h> using namespace std; #define DEBUG 0 #define MAX_QUERIES 50000 #define MAX_N 5000 #define MAX_SIGMA 26 static string password; static int n, s, numQueries; static stringstream msg; int query(string str); string guess(int n, int s) { string S(n, 'a'); int freq[s], used[s]{0}; vector<int> p; for(int l = 0; l < s; l++) { for(int i = 0; i < n; i++) S[i] = char(l + 'a'); freq[l] = query(S); if(freq[l] > 0) p.push_back(l); } S = ""; for(int l = 0; l < n; l++) { S.push_back('a'); for(int i = 0; i < s; i++) { if(used[i] == freq[i]) continue; S[l] = char(i + 'a'); if(l < n - 1) { used[i]++; int cnt = 0, tr = 0; for(int j = 0; j < s; j++) { if(used[j] == freq[j]) continue; if(cnt < tr) { tr++; continue; } tr++; for(int e = used[j] + 1; e <= freq[j]; e++) S.push_back(char(j + 'a')); int R = query(S); R -= l; cnt += (R == 1 + freq[j] - used[j]); for(int e = used[j] + 1; e <= freq[j]; e++) S.pop_back(); } used[i]--; if(cnt == tr){ used[i]++; break; } } else { int K = query(S); if(K == n) break; } } } return S; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 3 ms | 256 KB | Execution killed with signal 13 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 1 ms | 296 KB | Execution killed with signal 13 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 180 ms | 424 KB | Execution killed with signal 13 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 3 ms | 256 KB | Execution killed with signal 13 |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 3 ms | 256 KB | Execution killed with signal 13 |
2 | Halted | 0 ms | 0 KB | - |