Submission #10378291


Source Code Expand

#include <bits/stdc++.h>
#pragma GCC optimize("Ofast", "unroll-loops")
using namespace std;
#define ll long long
#define int ll
#define FOR(i,a,b) for (int i = (a); i<(b); i++)
#define REP(i,n) FOR(i,0,n)
#define REP1(i,n) FOR(i,1,n+1)
#define RREP(i,n) for (int i=(n)-1; i>=0; i--)
#define f first
#define s second
#define pb push_back
#define ALL(x) x.begin(),x.end()
#define SZ(x) (int)(x.size())
#define SQ(x) (x)*(x)
#define pii pair<int, int>
#define endl '\n'
//#define TOAD
#ifdef TOAD
#define bug(x) cerr<<__LINE__<<": "<<#x<<" is "<<x<<endl
#define IOS() 
#else
#define bug(...)
#define IOS() ios_base::sync_with_stdio(0), cin.tie(0), cout.tie(0);
#endif
const ll inf = 1ll<<60;
const int iinf=2147483647;
const ll mod = 1e9+7;
const int maxn=1e6+5;
signed main (){
  IOS();
  int n, m; cin>>n>>m;
  vector<int> vc(n);
  REP(i,n) vc[i]=1;
  vector<bool> can(n);
  can[0]=1;
  //vc[0]=0;
  REP(i,m){
    int x, y; cin>>x>>y;
    if (can[x-1]) can[y-1]=true;
    vc[x-1]--;
    vc[y-1]++;
    if (vc[x-1]<=0) can[x-1]=false;

  }
  int ans=0;
  REP(i,n){
    if (can[i]) ans++;
  }
  cout<<ans<<endl;
}

Submission Info

Submission Time
Task B - Box and Ball
User browntoad
Language C++14 (GCC 5.4.1)
Score 400
Code Size 1160 Byte
Status AC
Exec Time 19 ms
Memory 1024 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 400 / 400
Status
AC × 3
AC × 27
Set Name Test Cases
Sample 0_00.txt, 0_01.txt, 0_02.txt
All 0_00.txt, 0_01.txt, 0_02.txt, 1_00.txt, 1_01.txt, 1_02.txt, 1_03.txt, 1_04.txt, 1_05.txt, 1_06.txt, 1_07.txt, 1_08.txt, 1_09.txt, 1_10.txt, 1_11.txt, 1_12.txt, 1_13.txt, 1_14.txt, 1_15.txt, 1_16.txt, 1_17.txt, 1_18.txt, 1_19.txt, 1_20.txt, 1_21.txt, 1_22.txt, 1_23.txt
Case Name Status Exec Time Memory
0_00.txt AC 1 ms 256 KB
0_01.txt AC 1 ms 256 KB
0_02.txt AC 1 ms 256 KB
1_00.txt AC 1 ms 256 KB
1_01.txt AC 1 ms 256 KB
1_02.txt AC 1 ms 256 KB
1_03.txt AC 1 ms 256 KB
1_04.txt AC 16 ms 1024 KB
1_05.txt AC 18 ms 1024 KB
1_06.txt AC 15 ms 640 KB
1_07.txt AC 17 ms 640 KB
1_08.txt AC 12 ms 512 KB
1_09.txt AC 13 ms 896 KB
1_10.txt AC 5 ms 768 KB
1_11.txt AC 8 ms 384 KB
1_12.txt AC 2 ms 1024 KB
1_13.txt AC 16 ms 768 KB
1_14.txt AC 9 ms 384 KB
1_15.txt AC 15 ms 384 KB
1_16.txt AC 2 ms 768 KB
1_17.txt AC 19 ms 1024 KB
1_18.txt AC 17 ms 640 KB
1_19.txt AC 18 ms 512 KB
1_20.txt AC 18 ms 384 KB
1_21.txt AC 15 ms 640 KB
1_22.txt AC 19 ms 768 KB
1_23.txt AC 6 ms 768 KB