Submission #76535

#TimeUsernameProblemLanguageResultExecution timeMemory
76535darthsidiousCombo (IOI18_combo)C++14
100 / 100
48 ms604 KiB
#include <iostream> #include <string> //A B X Y using namespace std; int press(string p); // { // string secret = "ABXYXXYY"; // int ans = 0; // for(int i=0;i<secret.size();i++) { // if(secret[i] == p[i]) // ans++; // else // break; // } // return ans; // } string guess_sequence(int N) { string chars = "ABXY"; string c[3]; int start_c = 3; int x = press("AB"); // cout << "x = " << x << endl; if(x >= 1) { if(press("A") == 1) start_c = 0; else start_c = 1; } else { if(press("X") == 1) start_c = 2; } // for(int i=0;i<3;i++) { // string tmp(1, chars[i]); // int r = press(tmp); // if(r == 1) { // start_c = i; // break; // } // } for(int i=0;i<3;i++) { if(start_c <= i) c[i] = string(1, chars[i+1]); else c[i] = string(1, chars[i]); } // cout << c[0] << c[1] << c[2] << endl; string ans(1, chars[start_c]); // cout << "Starting with " << ans << endl; for(int i=0;i<7996;i++) { int correct = ans.size(); if(correct == N) break; if(correct == N -1) { int r = press(ans + c[0]); if(r == N) return ans + c[0]; r = press(ans + c[1]); if(r == N) return ans + c[1]; return ans + c[2]; // for(int k=0;k<3;k++) { // r = press(ans + c[k]); // if(r == N) // return ans + c[k]; // } // return ans; } string test = ans + c[0] + ans + c[1] + c[0] + ans + c[1] + c[1] + ans + c[1] + c[2]; if(test.size() > 4*N) cout << "wtf"; int res = press(test); // cout << "Result: " << res << " test: " << test << " correct: " << correct << endl; if(res == correct) ans += c[2]; else if(res == correct + 1) ans += c[0]; else if(res == correct + 2) ans += c[1]; // cout << "testing " << test << endl; if((int)ans.size() == N) break; } return ans; } // int main() { // cout << guess_sequence(8) << endl; // }

Compilation message (stderr)

combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:81:18: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   81 |   if(test.size() > 4*N)
      |      ~~~~~~~~~~~~^~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...