제출 #794821

#제출 시각아이디문제언어결과실행 시간메모리
794821baneMartian DNA (IOI16_dna)C++17
0 / 100
5 ms308 KiB
#include <bits/stdc++.h>
#include "dna.h"
using namespace std;


string analyse(int n, int t) {

    int oi = 0, io = 0, ii = 0, oo = 0;
    oi = make_test("01");
    io = make_test("10");
    ii = make_test("11");
    oo = make_test("00");
    string ans = "";
    
    if (oi){
        ans += "01";
    }else if (ii)ans += "11";
    else if (oo)ans +="00";
    else ans += "10";
    t-= 4;
    while(t > 0 && (int)ans.size() < n){
        string ask1 = ans, ask2 = ans, ask3 = ans, ask4 = ans;
        //cout << ans << endl;
        if (ans.size() + 2 <= n){
            if(oi)ask1 += "01";
            else ask1 = "4";

            if(io)ask1 += "10";
            else ask1 = "4";
            
            if(ii)ask1 += "11";
            else ask1 = "4";
            
            if(oo)ask1 += "00";
            else ask1 = "4";
            
            if (ask1 != "4"){
                if (make_test(ask1)){
                    ans = ask1;
                    --t;
                    continue;
                }
            }

            if (ask2 != "4"){
                if (make_test(ask2)){
                    ans = ask2;
                    --t;
                    continue;
                }
            }

            if (ask3 != "4"){
                if (make_test(ask3)){
                    ans = ask3;
                    --t;
                    continue;
                }
            }

            if (ask4 != "4"){
                if (make_test(ask4)){
                    ans = ask4;
                    --t;
                    continue;
                }
            }
        }
        //one element to the right
        --t;
        if (make_test(ans + '1')){
            ans += '1';
            break;
        }else if (make_test(ans + '0')){
            ans += '0';
        }
        --t;
        break;
    }
    while(t > 0 && (int)ans.size() < n){
        string ask1 = ans, ask2 = ans, ask3 = ans, ask4 = ans;
        cout << ans << endl;
        if (ans.size() + 2 <= n){
            if(oi)ask1 = "01" + ans;
            else ask1 = "4";

            if(io)ask1 = "10" + ans;
            else ask1 = "4";
            
            if(ii)ask1 = "11" + ans;
            else ask1 = "4";
            
            if(oo)ask1 = "00" + ans;
            else ask1 = "4";
            
            if (ask1 != "4"){
                if (make_test(ask1)){
                    ans = ask1;
                    --t;
                    continue;
                }
            }

            if (ask2 != "4"){
                if (make_test(ask2)){
                    ans = ask2;
                    --t;
                    continue;
                }
            }

            if (ask3 != "4"){
                if (make_test(ask3)){
                    ans = ask3;
                    --t;
                    continue;
                }
            }

            if (ask4 != "4"){
                if (make_test(ask4)){
                    ans = ask4;
                    --t;
                    continue;
                }
            }
        }
        //one element to the right
        --t;
        if (make_test('1' + ans)){
            ans = '1' + ans;
        }else{
            ans = '0' + ans;
        }
        break;
    }
    return ans;
}                       

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

dna.cpp: In function 'std::string analyse(int, int)':
dna.cpp:24:28: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   24 |         if (ans.size() + 2 <= n){
      |             ~~~~~~~~~~~~~~~^~~~
dna.cpp:83:28: warning: comparison of integer expressions of different signedness: 'std::__cxx11::basic_string<char>::size_type' {aka 'long unsigned int'} and 'int' [-Wsign-compare]
   83 |         if (ans.size() + 2 <= n){
      |             ~~~~~~~~~~~~~~~^~~~
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...