| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1297711 | khoavn2008 | Connecting Supertrees (IOI20_supertrees) | C++17 | 0 ms | 0 KiB |
vector<vector<int>> ans(n, vector<int>(n, 0));
REP(i,n - 1){
ans[i][i + 1] = 1;
ans[i + 1][i] = 1;
}
build(ans);
return 1;
}
