結果

問題 No.479 頂点は要らない
ユーザー FF256grhyFF256grhy
提出日時 2017-01-27 23:37:59
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 71 ms / 1,500 ms
コード長 312 bytes
コンパイル時間 1,305 ms
コンパイル使用メモリ 160,744 KB
実行使用メモリ 8,320 KB
最終ジャッジ日時 2024-06-06 05:46:09
合計ジャッジ時間 3,603 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 3 ms
6,812 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 4 ms
6,940 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 3 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 4 ms
6,940 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 4 ms
6,940 KB
testcase_11 AC 3 ms
6,940 KB
testcase_12 AC 3 ms
6,944 KB
testcase_13 AC 3 ms
6,940 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 3 ms
6,940 KB
testcase_16 AC 4 ms
6,944 KB
testcase_17 AC 3 ms
6,944 KB
testcase_18 AC 3 ms
6,944 KB
testcase_19 AC 3 ms
6,944 KB
testcase_20 AC 3 ms
6,944 KB
testcase_21 AC 3 ms
6,940 KB
testcase_22 AC 3 ms
6,944 KB
testcase_23 AC 4 ms
6,940 KB
testcase_24 AC 3 ms
6,944 KB
testcase_25 AC 4 ms
6,940 KB
testcase_26 AC 71 ms
8,320 KB
testcase_27 AC 69 ms
8,244 KB
testcase_28 AC 59 ms
6,940 KB
testcase_29 AC 61 ms
7,040 KB
testcase_30 AC 60 ms
7,296 KB
testcase_31 AC 61 ms
7,168 KB
testcase_32 AC 62 ms
7,040 KB
testcase_33 AC 59 ms
7,168 KB
testcase_34 AC 62 ms
7,168 KB
testcase_35 AC 56 ms
6,944 KB
testcase_36 AC 33 ms
6,940 KB
testcase_37 AC 61 ms
7,424 KB
testcase_38 AC 50 ms
6,944 KB
testcase_39 AC 36 ms
6,944 KB
testcase_40 AC 44 ms
7,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define D(i,x)for(int i=x;i--;)
using namespace std;
int n,m,u[100000],a,b,f;
vector<int>d[100000];
int main(){
	cin>>n>>m;
	D(i,m){
		cin>>a>>b;
		u[a]++;
		d[b].push_back(a);
	}
	D(i,n)
		if(u[i]){
			f=1;
			cout<<1;
			D(j,d[i].size())u[d[i][j]]--;
		}else if(f)cout<<0;
	return 0;
}
0