Submission #927112

#TimeUsernameProblemLanguageResultExecution timeMemory
927112quanlt206Combo (IOI18_combo)C++17
30 / 100
20 ms1456 KiB
#include "combo.h" #include<bits/stdc++.h> #define X first #define Y second #define all(x) begin(x), end(x) #define FOR(i, a, b) for(int i = (a); i <= (b); i++) #define FORD(i, b, a) for(int i = (b); i >= (a); i--) #define REP(i, a, b) for (int i = (a); i < (b); i++) #define mxx max_element #define mnn min_element #define SQR(x) (1LL * (x) * (x)) #define MASK(i) (1LL << (i)) #define Point Vector #define left Left #define right Right #define div Div using namespace std; typedef long long ll; typedef unsigned long long ull; typedef double db; typedef long double ld; typedef pair<db, db> pdb; typedef pair<ld, ld> pld; typedef pair<int, int> pii; typedef pair<int, pii> piii; typedef pair<ll, ll> pll; typedef pair<ll, pll> plll; typedef pair<ll, int> pli; typedef pair<ll, pii> plii; template<class A, class B> bool maximize(A& x, B y) { if (x < y) return x = y, true; else return false; } template<class A, class B> bool minimize(A& x, B y) { if (x > y) return x = y, true; else return false; } /* END OF TEMPLATE */ string guess_sequence(int n) { // guess the first string res = ""; if (press("AB") > 0) { if (press("A") > 0) res+="A"; else res+="B"; } else { if (press("X") > 0) res+="X"; else res+="Y"; } set<char> tmp; if ('A' != res[0]) tmp.insert('A'); if ('B' != res[0]) tmp.insert('B'); if ('X' != res[0]) tmp.insert('X'); if ('Y' != res[0]) tmp.insert('Y'); FOR(i, 2, n) { int cnt = 0; for (auto x : tmp) { cnt++; if (cnt == 3) break; if (press(res + x) == i) { res+=x; break; } } if (cnt == 3) res+=*tmp.rbegin(); } return res; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...