답안 #447346

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
447346 2021-07-26T06:50:16 Z Nodir_Bobiev 슈퍼트리 잇기 (IOI20_supertrees) C++17
0 / 100
0 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;
}

# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 204 KB b[0][0] is not 0
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 204 KB b[0][0] is not 0
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 204 KB b[0][0] is not 0
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 204 KB b[0][0] is not 0
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 204 KB b[0][0] is not 0
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 204 KB b[0][0] is not 0
2 Halted 0 ms 0 KB -