結果

問題 No.479 頂点は要らない
ユーザー IL_mstaIL_msta
提出日時 2017-01-28 01:47:55
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,739 bytes
コンパイル時間 1,194 ms
コンパイル使用メモリ 111,088 KB
実行使用メモリ 4,504 KB
最終ジャッジ日時 2023-08-25 12:34:06
合計ジャッジ時間 3,460 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#ifdef __GNUC__
#pragma GCC optimize ("O3")
#pragma GCC target ("avx")
#endif

#define _USE_MATH_DEFINES

#include <iostream>
#include <iomanip>
#include <stdio.h>

#include <sstream>
#include <algorithm>
#include <cmath>

#include <string>
#include <cstring>
#include <vector>
#include <valarray>
#include <array>

#include <queue>
#include <complex>
#include <set>
#include <map>
#include <stack>
#include <list>

#include<cassert>//assert();
#include <fstream>
/////////
#define REP(i, x, n) for(int i = x; i < n; i++)
#define rep(i,n) REP(i,0,n)

/////////
typedef long long LL;
typedef long double LD;
typedef unsigned long long ULL;
#define PII pair<int,int>
/////////
using namespace::std;

// 最大公約数
template<class T>
inline T gcd(T a, T b){return b == 0 ? a : gcd(b, a % b);}
// 最小公倍数
template<class T>
inline T lcm(T a, T b){return a * b / gcd(a, b);}
////////////////////////////////

inline void solve(){
		int n,m;
	scanf("%d%d",&n,&m);
	vector<bool> flag(n,false);
	vector<pair<int,int>> ege(m);
	int a,b;
	for(int i=0;i<m;++i){
		scanf("%d%d",&a,&b);
		ege[i].first = b;
		ege[i].second = a;
	}
	sort(ege.begin(),ege.end(),greater<pair<int,int>>() );
	for(int i=0;i<m;++i){
		if( flag[ ege[i].first ] == false ){
			flag[ ege[i].second] = true;
		}
	}
	bool read = false;
	string ret(n,'0');
	for(int i=0;i<n;++i){
		ret[ n-1-i ] += flag[ i ];
	}
	int pos = 0;
	for(;;++pos){
		if( ret[pos] == '1'){
			break;
		}
	}
	//printf("%s",ret.substr(pos).c_str());
	cout << ret;
}

int main(void){
    //std::cin.tie(0);
    //std::ios::sync_with_stdio(false);
	//std::cout << std::fixed;//小数を10進数表示
    //cout << setprecision(16);//小数をいっぱい表示する。16?

	solve();

	return 0;
}
0