Submission #222091

# Submission time Handle Problem Language Result Execution time Memory
222091 2020-04-12T06:17:48 Z kartel Wand (COCI19_wand) C++14
70 / 70
43 ms 7416 KB
#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 (g[1].size() == 0) mrk[1] = 1;

    dfs(1);

    for (i = 1; i <= n; i++) cout << mrk[i];
}
# Verdict Execution time Memory Grader output
1 Correct 7 ms 5120 KB Output is correct
2 Correct 7 ms 5120 KB Output is correct
3 Correct 39 ms 7288 KB Output is correct
4 Correct 38 ms 7164 KB Output is correct
5 Correct 39 ms 7288 KB Output is correct
6 Correct 42 ms 7296 KB Output is correct
7 Correct 38 ms 7288 KB Output is correct
8 Correct 41 ms 7292 KB Output is correct
9 Correct 42 ms 7032 KB Output is correct
10 Correct 43 ms 7416 KB Output is correct