Submission #956306

#TimeUsernameProblemLanguageResultExecution timeMemory
956306mostafa133Combo (IOI18_combo)C++14
0 / 100
1 ms504 KiB
#include <bits/stdc++.h> #include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/tree_policy.hpp> #include "combo.h" typedef long long ll; typedef long double ld; using namespace std; using namespace __gnu_pbds; using ordered_set = tree<ll, null_type, less<ll>, rb_tree_tag, tree_order_statistics_node_update>; #define all(x) x.begin(), x.end() #define fast ios_base::sync_with_stdio(0), cin.tie(0), cout.tie(0) const ll mod = 998244353; std::string guess_sequence(int N) { string x = "ABXY"; vector<string> y(4); char z; string ans; ll b = press("AB"); if (b) { if (press("A")) { ans.push_back('A'); // y = "BXBXXXY"; y[0] = "B", y[1] = "XB", y[2] = "XX", y[3] = "XY"; z = 'Y'; } else { ans.push_back('B'); ;y[0] = "A", y[1] = "XA", y[2] = "XX", y[3] = "XY"; z = 'Y'; } } else { if (press("X")) { ans.push_back('X'); // y = "ABABYBB"; y[0] = "A", y[1] = "BA", y[2] = "BB", y[3] = "BY"; z = 'Y'; } else { ans.push_back('Y'); // y = "ABABXBB"; y[0] = "A", y[1] = "BA", y[2] = "BB", y[3] = "BY"; z = 'X'; } } // cout << ans << ' '; for (int i = 1; i < N - 1; i++) { ll m = ans.size(); b = press(ans + y[0] + ans + y[1] + ans + y[2] + ans + y[3]); if (b == m + 1) { ans.push_back(y[0][0]); } else if (b == m + 2) { ans.push_back(y[1][0]); } else { ans.push_back(z); } } if (press(ans + 'A' + ans + 'B') != ans.size()) { if (press(ans + 'A') != ans.size()) { ans.push_back('A'); } else { ans.push_back('B'); } } else { if (press(ans + 'X') != ans.size()) { ans.push_back('X'); } else { ans.push_back('Y'); } } // cout << ans<<' '; return ans; }

Compilation message (stderr)

combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:71:38: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   71 |     if (press(ans + 'A' + ans + 'B') != ans.size())
      |         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~
combo.cpp:73:30: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   73 |         if (press(ans + 'A') != ans.size())
      |             ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~
combo.cpp:84:30: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   84 |         if (press(ans + 'X') != ans.size())
      |             ~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...