답안 #873029

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
873029 2023-11-14T10:24:10 Z vjudge1 Password (RMI18_password) C++17
0 / 100
48 ms 948 KB
#include<bits/stdc++.h>
using namespace std;

int cnt[200];

int query(string q);

string guess(int n, int s) {
	for(char c='a'; c<'a'+s; c++){
		string s;
		for(int i=0; i<n; i++) 
			s += c; 	
		cnt[c] = query(s);
	} string ans;
	for(int i=0; i<n; i++){
		string t = ans;
		t += '#';
		for(char c='a'; c<'a'+s; c++){
			if(!cnt[c]) continue;
			if(ans.size() == n-1){
				ans += c;
				break;
			}
			for(int j=1; j<=cnt[c]; j++){
				t += c;
			} bool ok = 0;
			for(char d='a'; d<'a'+s; d++){
				t[ans.size()] = d;
				if(query(t) == t.size()){
					ok = 1;
				}
			} if(!ok){
				ans += c;
				cnt[c]--;
				break;
			} 
		}
	} return ans;
}

Compilation message

password.cpp: In function 'std::string guess(int, int)':
password.cpp:13:7: warning: array subscript has type 'char' [-Wchar-subscripts]
   13 |   cnt[c] = query(s);
      |       ^
password.cpp:19:12: warning: array subscript has type 'char' [-Wchar-subscripts]
   19 |    if(!cnt[c]) continue;
      |            ^
password.cpp:20:18: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   20 |    if(ans.size() == n-1){
      |       ~~~~~~~~~~~^~~~~~
password.cpp:24:24: warning: array subscript has type 'char' [-Wchar-subscripts]
   24 |    for(int j=1; j<=cnt[c]; j++){
      |                        ^
password.cpp:29:17: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   29 |     if(query(t) == t.size()){
      |        ~~~~~~~~~^~~~~~~~~~~
password.cpp:34:9: warning: array subscript has type 'char' [-Wchar-subscripts]
   34 |     cnt[c]--;
      |         ^
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 344 KB Returned early from guess() after 316 queries.
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 436 KB Execution killed with signal 13
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 48 ms 948 KB Execution killed with signal 13
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 344 KB Returned early from guess() after 316 queries.
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 344 KB Returned early from guess() after 316 queries.
2 Halted 0 ms 0 KB -