Submission #447345

# Submission time Handle Problem Language Result Execution time Memory
447345 2021-07-26T06:49:46 Z Nodir_Bobiev Connecting Supertrees (IOI20_supertrees) C++17
0 / 100
1 ms 204 KB
#include "supertrees.h"
#include <bits/stdc++.h>
using namespace std ;

int construct(std::vector<std::vector<int>> p) {
      int n = p.size();
      vector<std::vector<int>> answer;
      for (int i = 0; i < n ; i++ ) {
            vector<int> row;
            row.resize(n);
            for(int j = 0; j < n; j ++){
                if( i == j ) row[j] = 1;
                else if( i == 1 ){
                    if( j != 1 ) row[j] = 1;
                }
                else{
                    if( j == 1 ) row[j] = 1;
                }
            }
            answer.push_back(row);
      }
      build(answer);
      return 1;
}

# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 204 KB b[0][0] is not 0
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 204 KB b[0][0] is not 0
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 204 KB b[0][0] is not 0
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 204 KB b[0][0] is not 0
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 204 KB b[0][0] is not 0
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 204 KB b[0][0] is not 0
2 Halted 0 ms 0 KB -