結果

問題 No.479 頂点は要らない
ユーザー sugarrrsugarrr
提出日時 2018-07-22 09:16:22
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 76 ms / 1,500 ms
コード長 1,231 bytes
コンパイル時間 821 ms
コンパイル使用メモリ 81,724 KB
実行使用メモリ 9,204 KB
最終ジャッジ日時 2024-06-07 20:09:29
合計ジャッジ時間 3,580 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 76 ms
9,088 KB
testcase_27 AC 73 ms
8,960 KB
testcase_28 AC 70 ms
9,204 KB
testcase_29 AC 69 ms
6,528 KB
testcase_30 AC 68 ms
6,528 KB
testcase_31 AC 62 ms
6,528 KB
testcase_32 AC 67 ms
6,400 KB
testcase_33 AC 57 ms
6,528 KB
testcase_34 AC 66 ms
6,784 KB
testcase_35 AC 58 ms
5,632 KB
testcase_36 AC 35 ms
5,376 KB
testcase_37 AC 66 ms
7,040 KB
testcase_38 AC 55 ms
6,400 KB
testcase_39 AC 42 ms
6,016 KB
testcase_40 AC 47 ms
7,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<math.h>
#include<stack>
#include<queue>
#include<vector>
#include<algorithm>
#include<string>
#include<iostream>
#include<set>
#include<map>
#include<bitset>

using namespace std;
typedef long long ll;
#define i_7 1000000007
#define i_5 1000000005

ll mod(ll a){
    ll c=a%i_7;
    if(c>=0)return c;
    else return c+i_7;
}
typedef pair<int,int> i_i;
typedef pair<ll,ll> l_l;
ll inf=1000000000000;/*10^12*/
#define rep(i,l,r) for(ll i=l;i<=r;i++)
ll max(ll a,ll b){if(a<b)return b;else return a;}
ll min(ll a,ll b){if(a>b)return b;else return a;}


//////////////////////////////////////

int main(){
    int n,m;cin>>n>>m;
    vector<int> e[n];
    rep(i,0,m-1){
        int a,b;cin>>a>>b;
        e[a].push_back(b);
        e[b].push_back(a);
    }
    bool deleted[n];memset(deleted,false,sizeof(deleted));
    for(int v=n-1;v>=0;v--){
        bool flag=true;
        for(auto x:e[v]){
            if(deleted[x])flag=false;
        }
        if(flag)deleted[v]=true;
    }
    int pos=n-1;
    while(pos>=0&&deleted[pos])pos--;
    while(pos>=0){
        if(!deleted[pos])cout<<1;
        else cout<<0;
        pos--;
    }
    cout<<endl;
    
    return 0;
}
0