# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
479888 | 2021-10-13T18:50:18 Z | glome | 슈퍼트리 잇기 (IOI20_supertrees) | C++17 | 215 ms | 23472 KB |
#include "supertrees.h" #include <vector> #include<bits/stdc++.h> using namespace std; int construct(std::vector<std::vector<int>> p) { bool ok = 1; for (int i = 0; i<p.size(); i++) { for (int j = 0; j<p.size(); j++) { ok &= p[i][j]; } } if(ok) { vector<vector<int>> ans(p.size(), vector<int> (p.size())); for (int i = 0; i<p.size(); i++) { ans[i][i] = 0; } for (int i = 1; i<p.size(); i++) { ans[0][i] = 1; ans[i][0] = 1; } build(ans); return 1; } }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 204 KB | Output is correct |
2 | Correct | 0 ms | 204 KB | Output is correct |
3 | Correct | 0 ms | 204 KB | Output is correct |
4 | Correct | 0 ms | 204 KB | Output is correct |
5 | Correct | 1 ms | 204 KB | Output is correct |
6 | Correct | 10 ms | 1204 KB | Output is correct |
7 | Correct | 215 ms | 23472 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 204 KB | Output is correct |
2 | Correct | 0 ms | 204 KB | Output is correct |
3 | Correct | 0 ms | 204 KB | Output is correct |
4 | Correct | 0 ms | 204 KB | Output is correct |
5 | Correct | 1 ms | 204 KB | Output is correct |
6 | Correct | 10 ms | 1204 KB | Output is correct |
7 | Correct | 215 ms | 23472 KB | Output is correct |
8 | Incorrect | 0 ms | 204 KB | Too many ways to get from 0 to 1, should be 0 found no less than 1 |
9 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 204 KB | Too many ways to get from 0 to 1, should be 0 found no less than 1 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 204 KB | Too many ways to get from 0 to 1, should be 0 found no less than 1 |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 204 KB | Output is correct |
2 | Correct | 0 ms | 204 KB | Output is correct |
3 | Correct | 0 ms | 204 KB | Output is correct |
4 | Correct | 0 ms | 204 KB | Output is correct |
5 | Correct | 1 ms | 204 KB | Output is correct |
6 | Correct | 10 ms | 1204 KB | Output is correct |
7 | Correct | 215 ms | 23472 KB | Output is correct |
8 | Incorrect | 0 ms | 204 KB | Too many ways to get from 0 to 1, should be 0 found no less than 1 |
9 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 204 KB | Output is correct |
2 | Correct | 0 ms | 204 KB | Output is correct |
3 | Correct | 0 ms | 204 KB | Output is correct |
4 | Correct | 0 ms | 204 KB | Output is correct |
5 | Correct | 1 ms | 204 KB | Output is correct |
6 | Correct | 10 ms | 1204 KB | Output is correct |
7 | Correct | 215 ms | 23472 KB | Output is correct |
8 | Incorrect | 0 ms | 204 KB | Too many ways to get from 0 to 1, should be 0 found no less than 1 |
9 | Halted | 0 ms | 0 KB | - |