답안 #401290

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
401290 2021-05-09T18:35:57 Z victoriad Martian DNA (IOI16_dna) C++14
0 / 100
1 ms 336 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[2]='1';
        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[3]='1';
        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[4]='1';
        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:48:13: warning: value computed is not used [-Wunused-value]
   48 |         s[2]=='1';
dna.cpp:64:13: warning: value computed is not used [-Wunused-value]
   64 |         s[3]=='1';
dna.cpp:80:13: warning: value computed is not used [-Wunused-value]
   80 |         s[4]=='1';
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 208 KB Output is correct
6 Correct 1 ms 204 KB Output is correct
7 Incorrect 1 ms 204 KB Wrong DNA
8 Incorrect 1 ms 204 KB Wrong DNA
9 Incorrect 1 ms 204 KB Wrong DNA
10 Incorrect 1 ms 204 KB Wrong DNA
11 Incorrect 1 ms 204 KB Wrong DNA
12 Incorrect 1 ms 204 KB Wrong DNA
13 Incorrect 1 ms 204 KB Wrong DNA
14 Incorrect 1 ms 204 KB Wrong DNA
15 Incorrect 1 ms 204 KB Wrong DNA
16 Incorrect 1 ms 204 KB Wrong DNA
17 Incorrect 1 ms 204 KB Wrong DNA
18 Incorrect 1 ms 204 KB Wrong DNA
19 Incorrect 1 ms 204 KB Wrong DNA
20 Incorrect 1 ms 204 KB Wrong DNA
21 Incorrect 1 ms 204 KB Wrong DNA
22 Incorrect 1 ms 204 KB Wrong DNA
23 Incorrect 1 ms 204 KB Wrong DNA
24 Incorrect 1 ms 204 KB Wrong DNA
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 272 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 1 ms 332 KB Execution killed with signal 11
8 Runtime error 1 ms 332 KB Execution killed with signal 11
9 Runtime error 1 ms 336 KB Execution killed with signal 11
10 Runtime error 1 ms 332 KB Execution killed with signal 11
11 Runtime error 1 ms 332 KB Execution killed with signal 11
12 Runtime error 1 ms 332 KB Execution killed with signal 11
13 Runtime error 1 ms 332 KB Execution killed with signal 11
14 Runtime error 1 ms 332 KB Execution killed with signal 11
15 Runtime error 1 ms 332 KB Execution killed with signal 11
16 Runtime error 1 ms 332 KB Execution killed with signal 11
17 Runtime error 1 ms 332 KB Execution killed with signal 11
18 Runtime error 1 ms 332 KB Execution killed with signal 11
19 Runtime error 1 ms 332 KB Execution killed with signal 11
20 Runtime error 1 ms 332 KB Execution killed with signal 11
21 Runtime error 1 ms 332 KB Execution killed with signal 11
22 Runtime error 1 ms 332 KB Execution killed with signal 11
23 Runtime error 1 ms 332 KB Execution killed with signal 11
24 Runtime error 1 ms 332 KB Execution killed with signal 11
25 Runtime error 1 ms 332 KB Execution killed with signal 11
26 Runtime error 1 ms 332 KB Execution killed with signal 11
27 Runtime error 1 ms 332 KB Execution killed with signal 11
28 Runtime error 1 ms 332 KB Execution killed with signal 11
29 Runtime error 1 ms 332 KB Execution killed with signal 11
30 Runtime error 1 ms 332 KB Execution killed with signal 11
31 Runtime error 1 ms 332 KB Execution killed with signal 11
32 Runtime error 1 ms 332 KB Execution killed with signal 11
33 Runtime error 1 ms 332 KB Execution killed with signal 11
34 Runtime error 1 ms 332 KB Execution killed with signal 11
# 결과 실행 시간 메모리 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 1 ms 332 KB Execution killed with signal 11
8 Runtime error 1 ms 332 KB Execution killed with signal 11
9 Runtime error 1 ms 332 KB Execution killed with signal 11
10 Runtime error 1 ms 332 KB Execution killed with signal 11
11 Runtime error 1 ms 332 KB Execution killed with signal 11
12 Runtime error 1 ms 332 KB Execution killed with signal 11
13 Runtime error 1 ms 332 KB Execution killed with signal 11
14 Runtime error 1 ms 332 KB Execution killed with signal 11
15 Runtime error 1 ms 332 KB Execution killed with signal 11
16 Runtime error 1 ms 332 KB Execution killed with signal 11
17 Runtime error 1 ms 332 KB Execution killed with signal 11
18 Runtime error 1 ms 332 KB Execution killed with signal 11
19 Runtime error 1 ms 332 KB Execution killed with signal 11
20 Runtime error 1 ms 332 KB Execution killed with signal 11
21 Runtime error 1 ms 332 KB Execution killed with signal 11
22 Runtime error 1 ms 332 KB Execution killed with signal 11
23 Runtime error 1 ms 332 KB Execution killed with signal 11
24 Runtime error 1 ms 332 KB Execution killed with signal 11
25 Runtime error 1 ms 332 KB Execution killed with signal 11
26 Runtime error 1 ms 332 KB Execution killed with signal 11
27 Runtime error 1 ms 332 KB Execution killed with signal 11
28 Runtime error 1 ms 332 KB Execution killed with signal 11
29 Runtime error 1 ms 336 KB Execution killed with signal 11
30 Runtime error 1 ms 332 KB Execution killed with signal 11
31 Runtime error 1 ms 332 KB Execution killed with signal 11
32 Runtime error 1 ms 332 KB Execution killed with signal 11
33 Runtime error 1 ms 332 KB Execution killed with signal 11
34 Runtime error 1 ms 332 KB Execution killed with signal 11
35 Runtime error 1 ms 332 KB Execution killed with signal 11
36 Runtime error 1 ms 332 KB Execution killed with signal 11
37 Runtime error 1 ms 332 KB Execution killed with signal 11
38 Runtime error 1 ms 332 KB Execution killed with signal 11
39 Runtime error 1 ms 332 KB Execution killed with signal 11