#include <bits/stdc++.h>
#define in(x) freopen(x,"r",stdin)
#define out(x) freopen(x,"w",stdout)
#define F first
#define S second
#define pb push_back
#define M ll(998244353)
#define inf ll(2e9+7)
#define N ll(200500)
#define sz(x) x.size()
#pragma GCC optimize("unroll-loops")
#pragma GCC optimize("O3")
#pragma GCC optimize("Ofast")
#define el '\n'
using namespace std;
typedef unsigned long long ull;
typedef long long ll;
typedef long double ld;
//#include <ext/pb_ds/assoc_container.hpp>
//#include <ext/pb_ds/tree_policy.hpp>
//using namespace __gnu_pbds;
//typedef tree <ll, null_type, less_equal <ll>, rb_tree_tag, tree_order_statistics_node_update> os;
int mrk[N];
int q, n, x, y, i;
vector <int> g[N];
void dfs(int v)
{
for (auto u : g[v])
{
if (mrk[u]) continue;
mrk[u] = 1;
dfs(u);
}
}
int main()
{
// in("input.txt");
// out("output.txt");
ios_base::sync_with_stdio(false);
iostream::sync_with_stdio(false);
cin.tie(NULL);
cin >> n >> q;
while (q--)
{
cin >> x >> y;
g[y].pb(x);
}
if (n == 1) {cout << "1";return 0;}
dfs(1);
for (i = 1; i <= n; i++) cout << mrk[i];
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
7 ms |
4992 KB |
Output is correct |
2 |
Correct |
7 ms |
4992 KB |
Output is correct |
3 |
Correct |
48 ms |
7416 KB |
Output is correct |
4 |
Correct |
40 ms |
7168 KB |
Output is correct |
5 |
Correct |
39 ms |
7288 KB |
Output is correct |
6 |
Correct |
42 ms |
7288 KB |
Output is correct |
7 |
Correct |
39 ms |
7288 KB |
Output is correct |
8 |
Correct |
40 ms |
7296 KB |
Output is correct |
9 |
Incorrect |
41 ms |
7032 KB |
Output isn't correct |
10 |
Correct |
42 ms |
7416 KB |
Output is correct |