# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
709094 | 2023-03-13T06:12:24 Z | jamezzz | Password (RMI18_password) | C++17 | 267 ms | 368 KB |
#include <bits/stdc++.h> using namespace std; mt19937 rng(time(0)); int query(string str); string guess(int n,int s){ string ans=""; int pv=0; vector<int> v; for(int i=0;i<s;++i)v.push_back(i); shuffle(v.begin(),v.end(),rng); for(int i:v){ char c='a'+i; for(int j=0;j<ans.length();++j){ string tmp=ans; tmp.insert(j,1,c); int res=query(tmp); if(res>pv){ pv=res; swap(tmp,ans); tmp.clear(); if(pv==n)return ans; continue; } else{ tmp.clear(); if(res==j)break; } } string tmp=ans; tmp.insert(tmp.length(),n-tmp.length(),c); pv=query(tmp); tmp.resize(pv); swap(ans,tmp); tmp.clear(); if(pv==n)return ans; } return ans; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 208 KB | Guessed the password with 84 queries. |
2 | Correct | 3 ms | 208 KB | Guessed the password with 219 queries. |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 208 KB | Guessed the password with 47 queries. |
2 | Correct | 2 ms | 236 KB | Guessed the password with 128 queries. |
3 | Runtime error | 2 ms | 304 KB | Execution killed with signal 13 |
4 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 44 ms | 324 KB | Guessed the password with 3472 queries. |
2 | Correct | 107 ms | 356 KB | Guessed the password with 9442 queries. |
3 | Correct | 212 ms | 348 KB | Guessed the password with 14948 queries. |
4 | Correct | 267 ms | 368 KB | Guessed the password with 20790 queries. |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 208 KB | Guessed the password with 84 queries. |
2 | Correct | 3 ms | 208 KB | Guessed the password with 219 queries. |
3 | Correct | 1 ms | 208 KB | Guessed the password with 47 queries. |
4 | Correct | 2 ms | 236 KB | Guessed the password with 128 queries. |
5 | Runtime error | 2 ms | 304 KB | Execution killed with signal 13 |
6 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 208 KB | Guessed the password with 84 queries. |
2 | Correct | 3 ms | 208 KB | Guessed the password with 219 queries. |
3 | Correct | 1 ms | 208 KB | Guessed the password with 47 queries. |
4 | Correct | 2 ms | 236 KB | Guessed the password with 128 queries. |
5 | Runtime error | 2 ms | 304 KB | Execution killed with signal 13 |
6 | Halted | 0 ms | 0 KB | - |