이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "islands.h"
#include<bits/stdc++.h>
using namespace std;
int stopien_wyjscia[100010];
vector<pair<int, int>>graf[100010], graf1[100010];
bool usuniete[100010];
variant<bool, std::vector<int>> find_journey(int n, int m, std::vector<int> U, std::vector<int> V) {
int i;
for(i=0;i<m;i++){
graf[U[i]].push_back({V[i], i});
graf1[V[i]].push_back({U[i], i});
stopien_wyjscia[U[i]]++;
//graf[V[i]].push_back({U[i], i+1});
}
int start = 0;
queue<int>kolejka;
//for(i=0;i<n;i++)
// if(stopien_wyjscia[i]==0)
// kolejka.push(i);
while(true){
if(stopien_wyjscia[start]==0)return false;
if(stopien_wyjscia[start]==1){
//for(auto j: graf1[start])
// if(--stopien_wyjscia[j.first]==0)
// kolejka.push(j.first);
usuniete[start] = 1;
for(auto j: graf[start])
if(!usuniete[j.first]){
start = j.first;
break;
}
continue;
}
if(!kolejka.size())break;
auto x = kolejka.front();
kolejka.pop();
usuniete[x] = 1;
for(auto j: graf1[x])
if(--stopien_wyjscia[j.first]==0)
kolejka.push(j.first);
}
return stopien_wyjscia[start]>=2;
}
# | 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... |