# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
655400 | ShirAriel | 연결리스트 수사하기 (NOI12_forensic) | C++17 | 4 ms | 1748 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
typedef long long ll;
vector<vector<ll>> branch;
vector<bool> visited;
ll getlen(ll v)
{
ll ans = 0;
visited[v] = true;
for (ll i = 0; i < branch[v].size(); i++)
{
ll u = branch[v][i];
if (!visited[u])
ans = max(getlen(u) + 1, ans);
}
return ans;
}
int main()
{
ios::sync_with_stdio(false); cin.tie(0); cout.tie(0);
ll n;
cin >> n;
vector<ll> chain(n);
for (ll i = 0; i < n; i++)
cin >> chain[i];
branch.resize(n);
for (ll i = 0; i < n; i++)
if (chain[i] != -1)
branch[chain[i]].push_back(i);
ll b = 0, c = 0;
bool circle = false;
vector<bool> bigchain(n, false);
ll v = chain[0], cnt=0;
bigchain[0] = true;
while (v!=-1 && !bigchain[v])
{
bigchain[v] = true;
v = chain[v];
cnt++;
}
v = chain[0];
visited.resize(n, false);
while (v != -1 && !visited[v])
{
visited[v] = true;
b = max(b, getlen(v));
v = chain[v];
}
if (v != -1)
circle = true;
for (ll i = 0; i < n; i++)
if (chain[i] == -1 && !visited[i])
c = max(c, getlen(i) + 2);
if (circle&&c == 0)
cout << cnt + 1;
else
cout << cnt + max(c, (circle ? 0 : b));
return 0;
}
컴파일 시 표준 에러 (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... |