# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
718525 | Augustyn | Naboj (COCI22_naboj) | C++17 | 248 ms | 15204 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<iostream>
#include<vector>
using namespace std;
#define x 200001
int n,m;
vector<int>pol[x];
bool juzodw[x],terodw[x];
int stp_wch[x],odp[x],it;
bool dfs(int t)
{
juzodw[t]=1;
terodw[t]=1;
for(int i:pol[t])
{
if(terodw[i]==1)
return 1;
if(juzodw[i]==0)
if(dfs(i))
return 1;
}
terodw[t]=0;
odp[++it]=t;
return 0;
}
int main()
{
scanf("%d%d",&n,&m);
while(m)
{
--m;
int a,b;
scanf("%d%d",&a,&b);
pol[b].push_back(a);
stp_wch[a]++;
}
for(int i=1;i<=n;++i)
if(stp_wch[i]==0)
if(dfs(i))
{
printf("-1");
return 0;
}
if(it!=n)
{
printf("-1");
return 0;
}
printf("%d\n",n);
for(int i=1;i<=n;++i)
printf("%d 0\n",odp[i]);
return 0;
}
Compilation message (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... |