제출 #76339

#제출 시각아이디문제언어결과실행 시간메모리
76339darthsidious콤보 (IOI18_combo)C++14
10 / 100
102 ms548 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 = 0;
	for(int i=0;i<4;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 << (string)c << endl;	

	string ans(1, chars[start_c]);
	// cout << "Starting with " << ans << endl;
	int test_char = 0;
	for(int i=0;i<7996;i++) {
		string test = ans;
		int len = test.size();

		test = ans + c[test_char%3];
		// cout << "testing " << test << endl;
		test_char++;

		if(press(test) > len) {
			// cout << "Improved..." << endl;
			ans = test;
		}

		// cout << ans << endl;

		if(ans.size() == N)
			break;

		// if(i > N)
		// 	break;
		// while(true) { //construct test string
			// for(int j=0;j<3;j++) {
			// 	test += ans + c[j];
			// }
		// }

	}

	return ans;
}

// int main() {
// 	cout << guess_sequence(8) << endl;
// }

컴파일 시 표준 에러 (stderr) 메시지

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