# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
305152 | bigDuck | Password (RMI18_password) | C++14 | 1347 ms | 376 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define INIT ios_base :: sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
#define mp make_pair
#define pb push_back
#define ft first
#define sc second
#define ll long long
#define pii pair<int, int>
#define count_bits __builtin_popcount
//#define int ll
int t, n, m, k, a[300010], q, l, r;
int cnt[300];
int query(string str);
string guess(int n, int s){
for(char c='a'; c<=('a'+s-1); c++){
string st;
for(int i=1; i<=n; i++){
st+="a"; st[st.length()-1]+=(c-'a');
}
cnt[c]=query(st);
}
string res;
for(int i=1; i<=n; i++){
for(char c1='a'; c1<='z'; c1++){
if(cnt[c1]==0){continue;}
bool v=true;
for(char c2='a'; (c2<='z') && (v==true) ; c2++){
if( (cnt[c2]==0) || c2==c1){
continue;
}string s2="a"; s2[0]+=(c1-'a');
for(int j=i+1; j<=n; j++){
s2+="a"; s2[s2.length()-1]+=(c2-'a');
}
int ac=query(res+s2);
if((ac-i)<cnt[c2]){
v=false;
}
}
if(!v){continue;}
res+="a"; res[res.length()-1]+=(c1-'a');
cnt[c1]--;
break;
}
}
return res;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |