# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1032893 | fv3 | 슈퍼트리 잇기 (IOI20_supertrees) | C++14 | 160 ms | 30200 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "supertrees.h"
#include <bits/stdc++.h>
using namespace std;
int construct(vector<vector<int>> p)
{
int n = p.size();
for (int i = 0; i < n; i++)
p[i].push_back(i);
sort(p.begin(), p.end());
// 1. Find all parts which are the same
vector<vector<int>> parts = { {p[0].back()} };
map<vector<int>, vector<int>> cycles;
int l = 0, r = 1;
while (r < n)
{
int i = 0;
for (; i < n; i++)
{
if (p[r-1][i] != p[r][i])
break;
}
if (i != n)
{
parts.push_back({p[r].back()});
// Count 1's in last part
int one_cnt = 0;
for (int j = 0; j < n; j++)
{
if (p[r-1][j] == 1)
one_cnt++;
}
if (one_cnt != r - l)
return 0;
vector<int> bs(n);
for (int j = 0; j < n; j++)
{
if (p[r-1][j])
bs[j] = 1;
}
cycles[bs].push_back(p[r-1].back());
l = r;
}
else
{
parts.back().push_back(p[r].back());
}
r++;
}
// Count 1's in last part
int one_cnt = 0;
for (int j = 0; j < n; j++)
{
if (p[r-1][j] == 1)
one_cnt++;
}
if (one_cnt != r - l)
return 0;
vector<int> bs(n);
for (int j = 0; j < n; j++)
{
if (p[r-1][j])
bs[j] = 1;
}
cycles[bs].push_back(r-1);
// 2. Generate parts
vector<vector<int>> answer(n, vector<int>(n));
for (auto path : parts)
{
for (int i = 1; i < path.size(); i++)
{
answer[path[i]][path[i-1]] = 1;
answer[path[i-1]][path[i]] = 1;
}
}
// 3. Generate cycles
for (auto cycle : cycles)
{
if (cycle.second.size() == 1)
continue;
if (cycle.second.size() == 2)
return 0;
for (int i = 1; i < cycle.second.size(); i++)
{
answer[cycle.second[i]][cycle.second[i-1]] = 1;
answer[cycle.second[i-1]][cycle.second[i]] = 1;
}
answer[cycle.second[0]][cycle.second.back()] = 1;
answer[cycle.second.back()][cycle.second[0]] = 1;
}
// 4. Profit
build(answer);
return 1;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |