Submission #1004233

# Submission time Handle Problem Language Result Execution time Memory
1004233 2024-06-21T06:40:32 Z spensa Connecting Supertrees (IOI20_supertrees) C++17
0 / 100
0 ms 348 KB
#include "supertrees.h"
#include <vector>
using namespace std;

int construct(std::vector<std::vector<int>> p) {
    //subtask 1: star graph
	int n = p.size();
    // vector<vector<int>> ans();
    vector<vector<int>> ans(n, vector<int> (n));  

    for(int i=0; i<n; i++){
        for(int j=0; j<n; j++){
            if(i==j) ans[i][j] = 1;
            else ans[i][j] = 0;
        }
    }
    for(int i=0; i<n; i++){
        ans[i][0] = 1;
        ans[0][i] = 1;
    }

    build(ans);
	return 1;
}
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB b[0][0] is not 0
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB b[0][0] is not 0
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB b[0][0] is not 0
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB b[0][0] is not 0
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB b[0][0] is not 0
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB b[0][0] is not 0
2 Halted 0 ms 0 KB -