# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1054170 | otarius | Password (RMI18_password) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// #include "password.h"
#include <bits/stdc++.h>
#include <bits/extc++.h>
using namespace __gnu_pbds;
using namespace std;
// #pragma GCC optimize("Ofast")
// #pragma GCC optimize ("unroll-loops")
// #pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")
#define ff first
#define sc second
#define pb push_back
#define ll long long
#define pll pair<ll, ll>
#define pii pair<int, int>
#define ull unsigned long long
#define all(x) (x).begin(),(x).end()
#define int long long
// #define int unsigned long long
// #define ordered_set(T) tree<T, null_type, less<T>, rb_tree_tag, tree_order_statistics_node_update>
// #define ordered_multiset(T) tree<T, null_type, less_equal<T>, rb_tree_tag, tree_order_statistics_node_update>
void open_file(string filename) {
freopen((filename + ".in").c_str(), "r", stdin);
freopen((filename + ".out").c_str(), "w", stdout);
}
// const ll mod = 1e9 + 7;
// const ll mod = 998244353;
const ll inf = 1e9;
const ll biginf = 1e18;
// const int maxN;
int query(string s);
string merge(string a, string b) {
int mx = query(b), i = 0;
for (int j = 0; j <= b.size() && i < a.size(); j++) {
string tmp = b; b.insert(b.begin() + j, a[i]);
int now = query(b);
if (now <= mx) b = tmp;
else { mx = now; ++i; }
} while (i < a.size()) b.pb(a[i++]);
return b;
}
string guess(int n, int s) {
deque<string> dq;
for (int i = 0; i < s; i++) {
string tmp = "";
for (int j = 0; j < n; j++)
tmp.pb(char('a' + i));
int x = query(tmp);
tmp.clear();
for (int j = 0; j < x; j++)
tmp.pb(char('a' + i));
dq.push_back(tmp);
} while (dq.size() > 1) {
string a = dq.back(); dq.pop_back();
string b = dq.back(); dq.pop_back();
dq.push_front(merge(a, b));
} return dq.front();
}