답안 #401297

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
401297 2021-05-09T18:49:35 Z victoriad Martian DNA (IOI16_dna) C++14
0 / 100
4 ms 460 KB
#include "dna.h"
#include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
#include <utility>
#include <queue>
#include <map>
#include <iomanip>
#include <fstream>
#include <cstdlib>
using namespace std;
            

std::string analyse(int n, int t) {
    
   vector<string>v;
    if(n==1){
        if(make_test("0"))return "0";
        return "1";
    }
    else{
    if(make_test("01")){
        v.push_back("01");
    }
    if(make_test("00")){
        v.push_back("00");
    }
    if(make_test("11")){
        v.push_back("11");
    }
    if(make_test("10")){
        v.push_back("10");
    }
    if(n==2){
        return v[0];
    }
    int l=v.size();
      for(int i=0;i<l;i++){
        string s=v[i];
        s.push_back('0');
        if(make_test(s)){
          v.push_back(s);
          if(n==3)return s;
          break;
        }
        s[2]='1';
        if(make_test(s)){
          v.push_back(s);
          if(n==3)return s;
          break;
        }
      }
      int x=v.size();
      for(int i=l;i<x;i++){
        string s=v[i];
        s.push_back('0');
        if(make_test(s)){
          v.push_back(s);
          if(n==4)return s;
          break;
        }
        s[3]='1';
        if(make_test(s)){
          v.push_back(s);
          if(n==4)return s;
          break;
        }
      }
      l=v.size();
      for(int i=x;i<l;i++){
        string s=v[i];
        s.push_back('0');
        if(make_test(s)){
          v.push_back(s);
          if(n==5)return s;
          break;
        }
        s[4]='1';
        if(make_test(s)){
          v.push_back(s);
          if(n==5)return s;
          break;
        }
      
      }
    }
      
  
}

Compilation message

dna.cpp: In function 'std::string analyse(int, int)':
dna.cpp:18:18: warning: control reaches end of non-void function [-Wreturn-type]
   18 |    vector<string>v;
      |                  ^
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()) {
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 204 KB Output is correct
2 Correct 1 ms 204 KB Output is correct
3 Correct 1 ms 204 KB Output is correct
4 Correct 1 ms 204 KB Output is correct
5 Correct 1 ms 204 KB Output is correct
6 Correct 1 ms 208 KB Output is correct
7 Runtime error 1 ms 332 KB Execution killed with signal 6
8 Runtime error 4 ms 420 KB Execution killed with signal 6
9 Correct 1 ms 208 KB Output is correct
10 Runtime error 3 ms 332 KB Execution killed with signal 6
11 Correct 1 ms 204 KB Output is correct
12 Correct 1 ms 204 KB Output is correct
13 Runtime error 3 ms 332 KB Execution killed with signal 6
14 Correct 1 ms 204 KB Output is correct
15 Correct 1 ms 204 KB Output is correct
16 Correct 1 ms 204 KB Output is correct
17 Runtime error 2 ms 332 KB Execution killed with signal 6
18 Correct 1 ms 204 KB Output is correct
19 Correct 1 ms 204 KB Output is correct
20 Runtime error 4 ms 332 KB Execution killed with signal 6
21 Correct 1 ms 204 KB Output is correct
22 Runtime error 2 ms 332 KB Execution killed with signal 6
23 Runtime error 2 ms 332 KB Execution killed with signal 6
24 Correct 1 ms 204 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 204 KB Output is correct
2 Correct 1 ms 204 KB Output is correct
3 Correct 1 ms 204 KB Output is correct
4 Correct 1 ms 204 KB Output is correct
5 Correct 1 ms 204 KB Output is correct
6 Correct 1 ms 204 KB Output is correct
7 Runtime error 3 ms 332 KB Execution killed with signal 6
8 Runtime error 2 ms 332 KB Execution killed with signal 6
9 Runtime error 3 ms 332 KB Execution killed with signal 6
10 Runtime error 3 ms 332 KB Execution killed with signal 6
11 Runtime error 3 ms 384 KB Execution killed with signal 6
12 Runtime error 3 ms 332 KB Execution killed with signal 6
13 Runtime error 3 ms 416 KB Execution killed with signal 6
14 Runtime error 2 ms 332 KB Execution killed with signal 6
15 Runtime error 2 ms 332 KB Execution killed with signal 6
16 Runtime error 3 ms 332 KB Execution killed with signal 6
17 Runtime error 2 ms 332 KB Execution killed with signal 6
18 Runtime error 1 ms 332 KB Execution killed with signal 6
19 Runtime error 4 ms 332 KB Execution killed with signal 6
20 Runtime error 2 ms 332 KB Execution killed with signal 6
21 Runtime error 3 ms 332 KB Execution killed with signal 6
22 Runtime error 2 ms 332 KB Execution killed with signal 6
23 Runtime error 3 ms 332 KB Execution killed with signal 6
24 Runtime error 2 ms 332 KB Execution killed with signal 6
25 Runtime error 2 ms 332 KB Execution killed with signal 6
26 Runtime error 2 ms 332 KB Execution killed with signal 6
27 Runtime error 3 ms 332 KB Execution killed with signal 6
28 Runtime error 2 ms 332 KB Execution killed with signal 6
29 Runtime error 2 ms 332 KB Execution killed with signal 6
30 Runtime error 2 ms 332 KB Execution killed with signal 6
31 Runtime error 3 ms 332 KB Execution killed with signal 6
32 Runtime error 2 ms 332 KB Execution killed with signal 6
33 Runtime error 3 ms 332 KB Execution killed with signal 6
34 Runtime error 2 ms 332 KB Execution killed with signal 6
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 204 KB Output is correct
2 Correct 1 ms 204 KB Output is correct
3 Correct 1 ms 204 KB Output is correct
4 Correct 1 ms 204 KB Output is correct
5 Correct 1 ms 204 KB Output is correct
6 Correct 1 ms 204 KB Output is correct
7 Runtime error 4 ms 420 KB Execution killed with signal 6
8 Runtime error 3 ms 332 KB Execution killed with signal 6
9 Runtime error 2 ms 332 KB Execution killed with signal 6
10 Runtime error 2 ms 332 KB Execution killed with signal 6
11 Runtime error 3 ms 332 KB Execution killed with signal 6
12 Runtime error 3 ms 424 KB Execution killed with signal 6
13 Runtime error 2 ms 332 KB Execution killed with signal 6
14 Runtime error 1 ms 332 KB Execution killed with signal 6
15 Runtime error 3 ms 332 KB Execution killed with signal 6
16 Runtime error 3 ms 332 KB Execution killed with signal 6
17 Runtime error 2 ms 332 KB Execution killed with signal 6
18 Runtime error 3 ms 332 KB Execution killed with signal 6
19 Runtime error 4 ms 332 KB Execution killed with signal 6
20 Runtime error 3 ms 332 KB Execution killed with signal 6
21 Runtime error 4 ms 420 KB Execution killed with signal 6
22 Runtime error 1 ms 332 KB Execution killed with signal 6
23 Runtime error 3 ms 332 KB Execution killed with signal 6
24 Runtime error 1 ms 332 KB Execution killed with signal 6
25 Runtime error 1 ms 332 KB Execution killed with signal 6
26 Runtime error 4 ms 332 KB Execution killed with signal 6
27 Runtime error 3 ms 332 KB Execution killed with signal 6
28 Runtime error 4 ms 436 KB Execution killed with signal 6
29 Runtime error 4 ms 332 KB Execution killed with signal 6
30 Runtime error 2 ms 332 KB Execution killed with signal 6
31 Runtime error 2 ms 332 KB Execution killed with signal 6
32 Runtime error 4 ms 332 KB Execution killed with signal 6
33 Runtime error 4 ms 460 KB Execution killed with signal 6
34 Runtime error 3 ms 332 KB Execution killed with signal 6
35 Runtime error 4 ms 332 KB Execution killed with signal 6
36 Runtime error 2 ms 332 KB Execution killed with signal 6
37 Runtime error 3 ms 332 KB Execution killed with signal 6
38 Runtime error 2 ms 332 KB Execution killed with signal 6
39 Runtime error 3 ms 332 KB Execution killed with signal 6