답안 #567646

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
567646 2022-05-23T23:27:25 Z Gabriel 슈퍼트리 잇기 (IOI20_supertrees) C++17
0 / 100
1 ms 468 KB
#include "supertrees.h"
#include "bits/stdc++.h"
using namespace std;
int construct(vector<vector<int> > p){
    int n = p.size();
    vector<vector<int> > answer;
    answer.assign(n, vector<int>(n));
    for(int i = 0; i < n; i++){
        for(int j = 0; i < n; j++){
            if(abs(i-j) == 1){
                answer[i][j] = 1;
            } else {
                answer[i][j] = 0;
            }
        }
    }
    build(answer);
    return 1;
}
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 468 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 468 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 468 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 468 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 468 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 468 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -