제출 #432757

#제출 시각아이디문제언어결과실행 시간메모리
432757amunduzbaevMartian DNA (IOI16_dna)C++14
0 / 100
10 ms420 KiB
#include "dna.h"
#ifndef EVAL
#include "grader.cpp"
#endif
#include "bits/stdc++.h"
using namespace std;

#define sz(x) (int)x.size()

int n;

string make_str(int bit, int len){
	string ss;
	for(int i=0;i<len;i++) ss = ss + char(bit + '0');
	return ss;
}

bool ask(int bit, int len) { return make_test(make_str(bit, len)); }

string analyse(int N, int t) {
	n = N;
	int l = 1, r = n;
	int bit = 1;
	if(!make_test("1")) bit = 0;
	while(l < r){
		int m = (l + r + 1)>>1;
		if(ask(bit, m)) l = m;
		else r = m - 1;
	}
	
	int len = l;
	string ss;
	for(int i=0;i<len;i++) ss = ss + char(bit + '0'); 
	
	if(make_test(string(ss + char((bit ^ 1) + '0')))){
		int last = 0;
		ss += char((bit ^ 1) + '0');
		while(sz(ss) < n && last <= len){
			//~ cout<<string(ss + char((bit ^ 1) + '0'))<<"\n";
			if(make_test(string(ss + char((bit ^ 1) + '0')))) ss += char((bit ^ 1) + '0'), last = 0;
			else ss += char(bit + '0'), last++;
		}
		//~ cout<<ss<<"\n";
		while(ss.back() == char(bit + '0')) ss.pop_back();
		//~ cout<<ss<<"\n";
		int l = 0, r = len;
		while(l + 1 < r){
			int m = (l + r)>>1;
			if(make_test(string(ss + make_str(bit, m)))) r = m;
			else l = m+1;
		} if(make_test(string(ss + make_str(bit, r)))) ss += make_str(bit, r);
		else ss += make_str(bit, l);
	}
	//~ cout<<ss<<"\n";
	while(sz(ss) < n){
		if(make_test(string(char((bit ^ 1) + '0') + ss))) ss = char((bit ^ 1) + '0') + ss;
		else ss = char(bit + '0') + ss;
	} return ss;
}

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

grader.cpp: In function 'bool make_test(std::string)':
grader.cpp:14:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   14 |  for (int i = 0; i < p.size(); i++) {
      |                  ~~^~~~~~~~~~
grader.cpp:23:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   23 |  for (int i = 1; i <= ss.size(); i++) {
      |                  ~~^~~~~~~~~~~~
grader.cpp:28:13: warning: comparison of integer expressions of different signedness: '__gnu_cxx::__alloc_traits<std::allocator<int>, int>::value_type' {aka 'int'} and 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   28 |   if (pr[i] == p.size()) {
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...